aboutsummaryrefslogtreecommitdiff
path: root/networking/traceroute.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/traceroute.c')
-rw-r--r--networking/traceroute.c4
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;