diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-11-23 23:39:01 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-11-23 23:39:01 +0000 |
commit | d2023283ac87737cf0fbd77f4cbb1bb7b390009d (patch) | |
tree | dced57f559932ada4fe8503b3c588b3f7cd9c00b /sysklogd/logger.c | |
parent | 1da0ad13fbe3175681943722e39b258ecbae96f6 (diff) | |
download | busybox-w32-d2023283ac87737cf0fbd77f4cbb1bb7b390009d.tar.gz busybox-w32-d2023283ac87737cf0fbd77f4cbb1bb7b390009d.tar.bz2 busybox-w32-d2023283ac87737cf0fbd77f4cbb1bb7b390009d.zip |
fix buglets found by randomconfig
Diffstat (limited to 'sysklogd/logger.c')
-rw-r--r-- | sysklogd/logger.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysklogd/logger.c b/sysklogd/logger.c index 60eac6ae6..970b05dc6 100644 --- a/sysklogd/logger.c +++ b/sysklogd/logger.c | |||
@@ -39,9 +39,9 @@ | |||
39 | * | 39 | * |
40 | * Original copyright notice is retained at the end of this file. | 40 | * Original copyright notice is retained at the end of this file. |
41 | */ | 41 | */ |
42 | static int decode(char *name, CODE * codetab) | 42 | static int decode(char *name, const CODE *codetab) |
43 | { | 43 | { |
44 | CODE *c; | 44 | const CODE *c; |
45 | 45 | ||
46 | if (isdigit(*name)) | 46 | if (isdigit(*name)) |
47 | return atoi(name); | 47 | return atoi(name); |