Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-05-09 22:07:15 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2008-05-09 22:07:15 +0400
commit023dc6798e05373bf33d64221bbe6a7265734c34 (patch)
treec111bcbb60f73790b29f7dd4f030f8c1e87b29a8 /networking/arp.c
parent98636eb08c5ecc216e18970e11f7021206ac9b04 (diff)
fix warnings about pointer signedness
Diffstat (limited to 'networking/arp.c')
-rw-r--r--networking/arp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/arp.c b/networking/arp.c
index c9b9d1d0d..f42e09f7c 100644
--- a/networking/arp.c
+++ b/networking/arp.c
@@ -200,7 +200,7 @@ static void arp_getdevhw(char *ifname, struct sockaddr *sa,
}
bb_error_msg("device '%s' has HW address %s '%s'",
ifname, xhw->name,
- xhw->print((char *) &ifr.ifr_hwaddr.sa_data));
+ xhw->print((unsigned char *) &ifr.ifr_hwaddr.sa_data));
}
}