diff options
author | Rob Landley <rob@landley.net> | 2006-09-11 01:34:21 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-09-11 01:34:21 +0000 |
commit | 49ea46667ffbaac7d3dc26f49720b98d4ac19af8 (patch) | |
tree | a955f5ced33678da1bc2545210196332bc6dd598 /sysklogd/syslogd.c | |
parent | 69674941ddf3a522772d4d9709b302e80bc6719e (diff) | |
download | busybox-w32-49ea46667ffbaac7d3dc26f49720b98d4ac19af8.tar.gz busybox-w32-49ea46667ffbaac7d3dc26f49720b98d4ac19af8.tar.bz2 busybox-w32-49ea46667ffbaac7d3dc26f49720b98d4ac19af8.zip |
Build fixes for gcc 4.0 with -Werror, from Tito.
Diffstat (limited to 'sysklogd/syslogd.c')
-rw-r--r-- | sysklogd/syslogd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c index f3de04653..9a5a04adb 100644 --- a/sysklogd/syslogd.c +++ b/sysklogd/syslogd.c | |||
@@ -258,7 +258,7 @@ void circ_message(const char *msg); | |||
258 | static void message(char *fmt, ...) __attribute__ ((format(printf, 1, 2))); | 258 | static void message(char *fmt, ...) __attribute__ ((format(printf, 1, 2))); |
259 | static void message(char *fmt, ...) | 259 | static void message(char *fmt, ...) |
260 | { | 260 | { |
261 | int fd; | 261 | int fd = -1; |
262 | struct flock fl; | 262 | struct flock fl; |
263 | va_list arguments; | 263 | va_list arguments; |
264 | 264 | ||