summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2015-01-16 11:49:58 -0500
committerNick Mathewson <nickm@torproject.org>2015-01-16 11:49:58 -0500
commitba17cdfb0a80c5f6e86eb7b6e510eb72a9352b83 (patch)
tree2ae68c50ac146f11e26538dd65052386f965b63f
parent2329d9fe3739aca46d00b47222db2f78bd23e4d3 (diff)
downloadtor-ba17cdfb0a80c5f6e86eb7b6e510eb72a9352b83.tar.gz
tor-ba17cdfb0a80c5f6e86eb7b6e510eb72a9352b83.zip
fix another mingw64 unit test warnin
-rw-r--r--src/test/test_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_util.c b/src/test/test_util.c
index 151ec69127..225fb790f9 100644
--- a/src/test/test_util.c
+++ b/src/test/test_util.c
@@ -3741,7 +3741,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, <, (U64_LITERAL(1)<<50));
+ tt_u64_op(memory1, <, (U64_LITERAL(1)<<50));
#endif
}