diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-01-08 10:44:30 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-01-08 10:44:30 -0500 |
commit | 6f171003ce8e96e2138825d693e7293fd909956f (patch) | |
tree | adae675488e546c813f22870f2c43c76d9d85ff3 /src/test/test_util.c | |
parent | 71f409606a686c3be2af22c1247e21b8781d98e6 (diff) | |
download | tor-6f171003ce8e96e2138825d693e7293fd909956f.tar.gz tor-6f171003ce8e96e2138825d693e7293fd909956f.zip |
fix new mingw64 compilation warnings
Diffstat (limited to 'src/test/test_util.c')
-rw-r--r-- | src/test/test_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_util.c b/src/test/test_util.c index 4891356820..15470e8efa 100644 --- a/src/test/test_util.c +++ b/src/test/test_util.c @@ -4851,7 +4851,7 @@ test_util_max_mem(void *arg) } else { /* You do not have a petabyte. */ #if SIZEOF_SIZE_T == SIZEOF_UINT64_T - tt_uint_op(memory1, OP_LT, (U64_LITERAL(1)<<50)); + tt_u64_op(memory1, OP_LT, (U64_LITERAL(1)<<50)); #endif } |