diff options
author | Eric Andersen | 2006-01-30 22:30:41 +0000 |
---|---|---|
committer | Eric Andersen | 2006-01-30 22:30:41 +0000 |
commit | 0cb6f35c33a2a3fd390aaa36da72e0600f205918 (patch) | |
tree | 6f685077a27f04869b4f152cbe4287c023554afb /networking/zcip.c | |
parent | 5e678873f9ff7c95d43b278feee547ce989b3b20 (diff) | |
download | busybox-0cb6f35c33a2a3fd390aaa36da72e0600f205918.zip busybox-0cb6f35c33a2a3fd390aaa36da72e0600f205918.tar.gz |
fix up annoying signed/unsigned and mixed type errors
Diffstat (limited to 'networking/zcip.c')
-rw-r--r-- | networking/zcip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/zcip.c b/networking/zcip.c index b64e37c..11b2db5 100644 --- a/networking/zcip.c +++ b/networking/zcip.c @@ -314,7 +314,7 @@ fail: goto fail; } else { struct ifreq ifr; - short seed[3]; + unsigned short seed[3]; // get the interface's ethernet address memset(&ifr, 0, sizeof (ifr)); |