瀏覽代碼

Fix a compilation warning on i386 with clang

Nick Mathewson 5 年之前
父節點
當前提交
bb65b53966
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/test/test_util.c

+ 1 - 1
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);
   }