X-Git-Url: https://git.draconx.ca/gitweb/cdecl99.git/blobdiff_plain/4b14cf4c3fa99fe5341f482cbe57058a87197d41..4251b4bd0087752ceddbf95a6a8c928ab2207844:/src/error.c diff --git a/src/error.c b/src/error.c index 5466d39..36e6366 100644 --- a/src/error.c +++ b/src/error.c @@ -19,9 +19,7 @@ #include #include #include -#include #include -#include #include "cdecl.h" #include "cdecl-internal.h" @@ -124,23 +122,20 @@ void cdecl__errmsg(unsigned msg) } /* - * Sets the library error to code, with a printf-style error string. + * 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, ...) +void cdecl__err(unsigned code, const char *fmt, const char *arg) { struct err_state *state; int rc, try = 0; - va_list ap; state = get_err_state(); if (!state) return; retry: - va_start(ap, fmt); - rc = vsnprintf(state->str, state->nstr, fmt, ap); - va_end(ap); - + rc = snprintf(state->str, state->nstr, fmt, arg); if (rc > 0 && rc >= state->nstr) { assert(try++ == 0 && rc < SIZE_MAX / 4); state = alloc_err_state(state, (size_t)(rc+1u) * 3 / 2);