diff options
author | guy <guy> | 2004-09-19 20:56:33 +0000 |
---|---|---|
committer | guy <guy> | 2004-09-19 20:56:33 +0000 |
commit | 147aa43a0ddc40279b896e3af52aad947bf80fdd (patch) | |
tree | bc3b8268dabf11cd64193deab8111b879da276f5 /missing | |
parent | 32cde073ff1b9ce6235268d53b3fbc934acc0de8 (diff) | |
download | tcpdump-147aa43a0ddc40279b896e3af52aad947bf80fdd.tar.gz |
"_int64" is signed. "unsigned _int64" is unsigned.
Diffstat (limited to 'missing')
-rw-r--r-- | missing/bittypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/missing/bittypes.h b/missing/bittypes.h index 27906a85..31013ae4 100644 --- a/missing/bittypes.h +++ b/missing/bittypes.h @@ -71,7 +71,7 @@ typedef unsigned short u_int32_t; #if SIZEOF_LONG_LONG == 8 typedef unsigned long long u_int64_t; #elif defined(_MSC_EXTENSIONS) -typedef _int64 u_int64_t; +typedef unsigned _int64 u_int64_t; #elif SIZEOF_INT == 8 typedef unsigned int u_int64_t; #elif SIZEOF_LONG == 8 |