diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-06-05 17:11:42 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-06-05 17:11:42 +0000 |
commit | 101c59356292c30ed5c8f7138c7680b4dc3d4811 (patch) | |
tree | 9804bca016979ade791f1ca9eb4191779acf58d5 /slirp/bootp.h | |
parent | b685369795f028535862cb3caddaf219c655db2a (diff) | |
download | qemu-101c59356292c30ed5c8f7138c7680b4dc3d4811.zip qemu-101c59356292c30ed5c8f7138c7680b4dc3d4811.tar.gz qemu-101c59356292c30ed5c8f7138c7680b4dc3d4811.tar.bz2 |
64 bit fixes (initial patch by Gwenole Beauchesne)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1458 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'slirp/bootp.h')
-rw-r--r-- | slirp/bootp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/slirp/bootp.h b/slirp/bootp.h index d3b2baa..e48f53f 100644 --- a/slirp/bootp.h +++ b/slirp/bootp.h @@ -97,9 +97,9 @@ struct bootp_t { uint8_t bp_htype; uint8_t bp_hlen; uint8_t bp_hops; - unsigned long bp_xid; - unsigned short bp_secs; - unsigned short unused; + uint32_t bp_xid; + uint16_t bp_secs; + uint16_t unused; struct in_addr bp_ciaddr; struct in_addr bp_yiaddr; struct in_addr bp_siaddr; |