]> git.draconx.ca Git - cdecl99.git/blobdiff - src/error.c
libcdecl: Remove error code argument from cdecl__err.
[cdecl99.git] / src / error.c
index 758f58e63c50d4159195b08189c10cd6467e06c2..a2d705a8d15885f8e8d20986c5f99098a48bb786 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Error handling for libcdecl.
- *  Copyright © 2011-2012, 2021, 2023 Nick Bowler
+ *  Copyright © 2011-2012, 2021, 2023-2024 Nick Bowler
  *
  *  This program is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -167,7 +167,7 @@ fmt_err(struct err_state *state, const char *fmt, const char *arg)
  * Sets the library error to code; fmt is a printf-style string that may use
  * up to one %s directive, to refer to arg.
  */
-void cdecl__err(unsigned code, const char *fmt, const char *arg)
+void cdecl__err(const char *fmt, const char *arg)
 {
        struct err_state *state;
        unsigned try = 0;
@@ -189,8 +189,8 @@ retry:
                goto retry;
        }
 
+       state->err.code = CDECL_ENOPARSE;
        state->err.str = state->str;
-       state->err.code = code;
 }
 
 const struct cdecl_error *cdecl_get_error(void)