diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2013-11-29 16:45:45 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2013-11-29 16:45:45 +0100 |
commit | 327f550669a80d72f36bc9e4de619c163aa46eff (patch) | |
tree | d304092aeb06539085be1385ab9298876c414b44 /sysklogd | |
parent | 9b2a9f0210f13f1c59c0b954c4aa0eeb0a66efd1 (diff) | |
download | busybox-w32-327f550669a80d72f36bc9e4de619c163aa46eff.tar.gz busybox-w32-327f550669a80d72f36bc9e4de619c163aa46eff.tar.bz2 busybox-w32-327f550669a80d72f36bc9e4de619c163aa46eff.zip |
Use unsigned printf/scanf conversion where more appropriate
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'sysklogd')
-rw-r--r-- | sysklogd/logread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysklogd/logread.c b/sysklogd/logread.c index 92a562919..bea73d932 100644 --- a/sysklogd/logread.c +++ b/sysklogd/logread.c | |||
@@ -126,7 +126,7 @@ int logread_main(int argc UNUSED_PARAM, char **argv) | |||
126 | shbuf_data = shbuf->data; /* pointer! */ | 126 | shbuf_data = shbuf->data; /* pointer! */ |
127 | 127 | ||
128 | if (DEBUG) | 128 | if (DEBUG) |
129 | printf("cur:%d tail:%i size:%i\n", | 129 | printf("cur:%u tail:%u size:%u\n", |
130 | cur, shbuf_tail, shbuf_size); | 130 | cur, shbuf_tail, shbuf_size); |
131 | 131 | ||
132 | if (!follow) { | 132 | if (!follow) { |