diff options
author | Rich Felker <dalias@aerifal.cx> | 2013-03-04 17:05:45 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2013-03-04 17:05:45 -0500 |
commit | 8c741783fc96d559cfe79301c924c217b2905c0c (patch) | |
tree | 7cb6040429516c83e696dbc8fc7a6e96ea3dd2fe /include/net | |
parent | 99727dad25c6fd852291beef5e0da0a8d2ec8208 (diff) | |
download | musl-8c741783fc96d559cfe79301c924c217b2905c0c.tar.gz musl-8c741783fc96d559cfe79301c924c217b2905c0c.tar.bz2 musl-8c741783fc96d559cfe79301c924c217b2905c0c.tar.xz musl-8c741783fc96d559cfe79301c924c217b2905c0c.zip |
fix some obscure header type size/alignment issues
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/if_arp.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/net/if_arp.h b/include/net/if_arp.h index bb5eadf1..371ab104 100644 --- a/include/net/if_arp.h +++ b/include/net/if_arp.h @@ -117,12 +117,12 @@ struct arpreq_old { #define ARPD_FLUSH 0x03 struct arpd_request { - uint16_t req; + unsigned short req; uint32_t ip; - uint32_t dev; - uint32_t stamp; - uint32_t updated; - uint8_t ha[MAX_ADDR_LEN]; + unsigned long dev; + unsigned long stamp; + unsigned long updated; + unsigned char ha[MAX_ADDR_LEN]; }; |