diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-27 00:20:38 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-27 00:20:38 +0000 |
commit | c965f4b14194ade82c9f30807fa948d6545e55d6 (patch) | |
tree | 2bf74f412ceab11ffffb49817254cb9dbf5b774c /networking | |
parent | e8240f19bd99802e0ccb1738b2d2e630b6eb9087 (diff) | |
download | busybox-w32-c965f4b14194ade82c9f30807fa948d6545e55d6.tar.gz busybox-w32-c965f4b14194ade82c9f30807fa948d6545e55d6.tar.bz2 busybox-w32-c965f4b14194ade82c9f30807fa948d6545e55d6.zip |
devfsd: style cleanup; size reduction (Tito <farmatito@tiscali.it>)
traceroute: suppress warning
Diffstat (limited to 'networking')
-rw-r--r-- | networking/traceroute.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/traceroute.c b/networking/traceroute.c index 577738a97..ad3ec4eda 100644 --- a/networking/traceroute.c +++ b/networking/traceroute.c | |||
@@ -397,8 +397,8 @@ ifaddrlist(struct IFADDRLIST **ipaddrp) | |||
397 | ) { | 397 | ) { |
398 | if (errno == EINVAL) | 398 | if (errno == EINVAL) |
399 | bb_error_msg_and_die( | 399 | bb_error_msg_and_die( |
400 | "SIOCGIFCONF: ifreq struct too small (%d bytes)", | 400 | "SIOCGIFCONF: ifreq struct too small (%u bytes)", |
401 | IFREQ_BUFSIZE * sizeof(ibuf[0])); | 401 | (unsigned)(IFREQ_BUFSIZE * sizeof(ibuf[0]))); |
402 | bb_perror_msg_and_die("SIOCGIFCONF"); | 402 | bb_perror_msg_and_die("SIOCGIFCONF"); |
403 | } | 403 | } |
404 | ifrp = ibuf; | 404 | ifrp = ibuf; |