diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-01-29 07:06:24 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-01-29 07:06:24 +0000 |
commit | 04e97024e78f452526f710a5b3969c78a65f2b33 (patch) | |
tree | d5eba84927f0426038db2a1ef3b8b241996fd420 /sysklogd/logger.c | |
parent | a6d0dbc86fd8a84f9c2a05f77013bd3eb5efa697 (diff) | |
download | busybox-w32-04e97024e78f452526f710a5b3969c78a65f2b33.tar.gz busybox-w32-04e97024e78f452526f710a5b3969c78a65f2b33.tar.bz2 busybox-w32-04e97024e78f452526f710a5b3969c78a65f2b33.zip |
Clear up some ambiguity with old style assignments.
-Erik
Diffstat (limited to 'sysklogd/logger.c')
-rw-r--r-- | sysklogd/logger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysklogd/logger.c b/sysklogd/logger.c index d7ae0233e..aab95b984 100644 --- a/sysklogd/logger.c +++ b/sysklogd/logger.c | |||
@@ -161,7 +161,7 @@ extern int logger_main(int argc, char **argv) | |||
161 | message=buf; | 161 | message=buf; |
162 | } else { | 162 | } else { |
163 | if (argc>=1) { | 163 | if (argc>=1) { |
164 | message=*argv; | 164 | message = *argv; |
165 | } else { | 165 | } else { |
166 | fprintf(stderr, "No message\n"); | 166 | fprintf(stderr, "No message\n"); |
167 | exit( FALSE); | 167 | exit( FALSE); |