diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-04-06 08:06:36 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-04-06 08:06:36 +0000 |
commit | 93d6513d9315fa72d7af4ac2435f8c1e243273cb (patch) | |
tree | a7642802cbab4053e62cf13f2daa194c524da2e1 /sysklogd | |
parent | 7a4b7194864e67f512dac1081f244d3c07a0eca2 (diff) | |
download | busybox-w32-93d6513d9315fa72d7af4ac2435f8c1e243273cb.tar.gz busybox-w32-93d6513d9315fa72d7af4ac2435f8c1e243273cb.tar.bz2 busybox-w32-93d6513d9315fa72d7af4ac2435f8c1e243273cb.zip |
Some more minor updates to better use some gcc attributes.
-Erik
Diffstat (limited to 'sysklogd')
-rw-r--r-- | sysklogd/syslogd.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c index 464d7846e..5d6d2a0dd 100644 --- a/sysklogd/syslogd.c +++ b/sysklogd/syslogd.c | |||
@@ -75,6 +75,8 @@ static const char syslogd_usage[] = | |||
75 | /* Note: There is also a function called "message()" in init.c */ | 75 | /* Note: There is also a function called "message()" in init.c */ |
76 | /* Print a message to the log file. */ | 76 | /* Print a message to the log file. */ |
77 | static void message(char *fmt, ...) | 77 | static void message(char *fmt, ...) |
78 | __attribute__ ((format (printf, 1, 2))); | ||
79 | static void message(char *fmt, ...) | ||
78 | { | 80 | { |
79 | int fd; | 81 | int fd; |
80 | va_list arguments; | 82 | va_list arguments; |