aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-02-22 23:38:48 +0000
committerEric Andersen <andersen@codepoet.org>2001-02-22 23:38:48 +0000
commitc163e5107f0af0f395f9998ee195896f6fa1b2e1 (patch)
treef31c51ab0ca271ddaa2f415807ac1cd23408dc7b
parent544891dd2606ad3beb0aed65feaacc7a100c9dd2 (diff)
downloadbusybox-w32-c163e5107f0af0f395f9998ee195896f6fa1b2e1.tar.gz
busybox-w32-c163e5107f0af0f395f9998ee195896f6fa1b2e1.tar.bz2
busybox-w32-c163e5107f0af0f395f9998ee195896f6fa1b2e1.zip
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
-rw-r--r--busybox.h8
-rw-r--r--include/busybox.h8
2 files changed, 8 insertions, 8 deletions
diff --git a/busybox.h b/busybox.h
index 692a9084e..8d4976a4b 100644
--- a/busybox.h
+++ b/busybox.h
@@ -89,10 +89,10 @@ extern const struct BB_applet applets[];
89extern const char *applet_name; 89extern const char *applet_name;
90 90
91extern void show_usage(void) __attribute__ ((noreturn)); 91extern void show_usage(void) __attribute__ ((noreturn));
92extern void error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); 92extern void error_msg(const char *s, ...);
93extern void error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); 93extern void error_msg_and_die(const char *s, ...) __attribute__ ((noreturn));
94extern void perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); 94extern void perror_msg(const char *s, ...);
95extern void perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); 95extern void perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn));
96 96
97const char *mode_string(int mode); 97const char *mode_string(int mode);
98const char *time_string(time_t timeVal); 98const char *time_string(time_t timeVal);
diff --git a/include/busybox.h b/include/busybox.h
index 692a9084e..8d4976a4b 100644
--- a/include/busybox.h
+++ b/include/busybox.h
@@ -89,10 +89,10 @@ extern const struct BB_applet applets[];
89extern const char *applet_name; 89extern const char *applet_name;
90 90
91extern void show_usage(void) __attribute__ ((noreturn)); 91extern void show_usage(void) __attribute__ ((noreturn));
92extern void error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); 92extern void error_msg(const char *s, ...);
93extern void error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); 93extern void error_msg_and_die(const char *s, ...) __attribute__ ((noreturn));
94extern void perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); 94extern void perror_msg(const char *s, ...);
95extern void perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); 95extern void perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn));
96 96
97const char *mode_string(int mode); 97const char *mode_string(int mode);
98const char *time_string(time_t timeVal); 98const char *time_string(time_t timeVal);