Skip to content

Commit 9c486a9

Browse files
committed
Annotate cfg_error with format attribute
Format attributes help compilers to warn on format string misuses, like: cfg_error(cfg, user_defined_input) cfg_error(cfg, "foo %d", "bar") confuse.c:1246:20: warning: format string is not a string literal [-Wformat-nonliteral] vfprintf(stderr, fmt, ap); ^~~
1 parent 113d7a9 commit 9c486a9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/confuse.h

+3
Original file line numberDiff line numberDiff line change
@@ -770,6 +770,9 @@ DLLIMPORT cfg_errfunc_t __export cfg_set_error_function(cfg_t *cfg, cfg_errfunc_
770770
/** Show a parser error. Any user-defined error reporting function is called.
771771
* @see cfg_set_error_function
772772
*/
773+
#ifdef __GNUC__
774+
__attribute__((__format__(__printf__, 2, 3)))
775+
#endif
773776
DLLIMPORT void __export cfg_error(cfg_t *cfg, const char *fmt, ...);
774777

775778
/** Returns the option comment

0 commit comments

Comments
 (0)