diff options
Diffstat (limited to 'misc/error.c')
-rw-r--r-- | misc/error.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/misc/error.c b/misc/error.c index 599de78629..8758bd0ade 100644 --- a/misc/error.c +++ b/misc/error.c @@ -74,10 +74,12 @@ unsigned int error_message_count; /* In GNU libc we want do not want to use the common name `error' directly. Instead make it a weak alias. */ -extern void __error (int status, int errnum, const char *message, ...); +extern void __error (int status, int errnum, const char *message, ...) + __attribute__ ((__format__ (__printf__, 3, 4))); extern void __error_at_line (int status, int errnum, const char *file_name, unsigned int line_number, const char *message, - ...); + ...) + __attribute__ ((__format__ (__printf__, 5, 6)));; # define error __error # define error_at_line __error_at_line |