diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-08-24 16:13:30 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-08-24 16:13:30 -0400 |
commit | bb65b539663550bd22732369295c3572a426899a (patch) | |
tree | f83226ca7fe00301e324b2b2eac0704435f054a0 /src/test/test_util.c | |
parent | 7217bdacb50e6934abdf9bb43b4c9b1073155647 (diff) | |
download | tor-bb65b539663550bd22732369295c3572a426899a.tar.gz tor-bb65b539663550bd22732369295c3572a426899a.zip |
Fix a compilation warning on i386 with clang
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 b395110cdf..6cbd504e34 100644 --- a/src/test/test_util.c +++ b/src/test/test_util.c @@ -6299,7 +6299,7 @@ test_util_log_mallinfo(void *arg) tt_assert(next2); if (mem2 == 0) { /* This is a fake mallinfo that doesn't actually fill in its outputs. */ - tt_int_op(mem1, OP_EQ, 0); + tt_u64_op(mem1, OP_EQ, 0); } else { tt_u64_op(mem1, OP_LT, mem2); } |