mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 21:04:56 +00:00
Turn off the printf attribute for the ?error_msg* functions, since it
is ok to pass them a NULL, unlike printf. This silences a pointless warning message. -Erik
This commit is contained in:
parent
544891dd26
commit
c163e5107f
@ -89,10 +89,10 @@ extern const struct BB_applet applets[];
|
|||||||
extern const char *applet_name;
|
extern const char *applet_name;
|
||||||
|
|
||||||
extern void show_usage(void) __attribute__ ((noreturn));
|
extern void show_usage(void) __attribute__ ((noreturn));
|
||||||
extern void error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
|
extern void error_msg(const char *s, ...);
|
||||||
extern void error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
|
extern void error_msg_and_die(const char *s, ...) __attribute__ ((noreturn));
|
||||||
extern void perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
|
extern void perror_msg(const char *s, ...);
|
||||||
extern void perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
|
extern void perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn));
|
||||||
|
|
||||||
const char *mode_string(int mode);
|
const char *mode_string(int mode);
|
||||||
const char *time_string(time_t timeVal);
|
const char *time_string(time_t timeVal);
|
||||||
|
@ -89,10 +89,10 @@ extern const struct BB_applet applets[];
|
|||||||
extern const char *applet_name;
|
extern const char *applet_name;
|
||||||
|
|
||||||
extern void show_usage(void) __attribute__ ((noreturn));
|
extern void show_usage(void) __attribute__ ((noreturn));
|
||||||
extern void error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
|
extern void error_msg(const char *s, ...);
|
||||||
extern void error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
|
extern void error_msg_and_die(const char *s, ...) __attribute__ ((noreturn));
|
||||||
extern void perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
|
extern void perror_msg(const char *s, ...);
|
||||||
extern void perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
|
extern void perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn));
|
||||||
|
|
||||||
const char *mode_string(int mode);
|
const char *mode_string(int mode);
|
||||||
const char *time_string(time_t timeVal);
|
const char *time_string(time_t timeVal);
|
||||||
|
Loading…
Reference in New Issue
Block a user