diff options
author | Guy Harris <guy@alum.mit.edu> | 2017-10-20 13:14:29 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2017-10-20 13:14:29 -0700 |
commit | 5ef21bfec8b055349f2afb23e0b3973af6f345b4 (patch) | |
tree | 31474ef8c07fe6d06109272cc187cdd31bcad016 /tcpdump.c | |
parent | 370cb545036133297bb59346595d2cc977dcd821 (diff) | |
download | tcpdump-5ef21bfec8b055349f2afb23e0b3973af6f345b4.tar.gz |
That should be an int64_t, not a uint64_t, so don't have a trailing U.
Diffstat (limited to 'tcpdump.c')
-rw-r--r-- | tcpdump.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1397,7 +1397,7 @@ main(int argc, char **argv) * Will multiplying it by 1000000 overflow? */ #ifdef HAVE_PCAP_DUMP_FTELL64 - if (Cflag > INT64_T_CONSTANT(0x7fffffffffffffffU) / 1000000) + if (Cflag > INT64_T_CONSTANT(0x7fffffffffffffff) / 1000000) #else if (Cflag > LONG_MAX / 1000000) #endif |