diff options
Diffstat (limited to 'slirp/tcp.h')
-rw-r--r-- | slirp/tcp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/slirp/tcp.h b/slirp/tcp.h index 9d06836626..b3817cb13c 100644 --- a/slirp/tcp.h +++ b/slirp/tcp.h @@ -51,10 +51,10 @@ struct tcphdr { tcp_seq th_seq; /* sequence number */ tcp_seq th_ack; /* acknowledgement number */ #ifdef HOST_WORDS_BIGENDIAN - u_int th_off:4, /* data offset */ + uint8_t th_off:4, /* data offset */ th_x2:4; /* (unused) */ #else - u_int th_x2:4, /* (unused) */ + uint8_t th_x2:4, /* (unused) */ th_off:4; /* data offset */ #endif uint8_t th_flags; |