commit bb65b539663550bd22732369295c3572a426899a
parent 7217bdacb50e6934abdf9bb43b4c9b1073155647
Author: Nick Mathewson <nickm@torproject.org>
Date: Fri, 24 Aug 2018 16:13:30 -0400
Fix a compilation warning on i386 with clang
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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);
}