]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
One more 64->32
authorNick Mathewson <nickm@torproject.org>
Thu, 8 May 2014 18:10:30 +0000 (14:10 -0400)
committerNick Mathewson <nickm@torproject.org>
Thu, 8 May 2014 18:10:30 +0000 (14:10 -0400)
src/test/test_util.c

index 6f3b7e30bcd2a8e61a3cf7c8e4226d4892413bc5..d66be32a79102c3525517c4cd3859190a4276c8f 100644 (file)
@@ -189,7 +189,7 @@ test_util_write_chunks_to_file(void *arg)
   // assert the tempfile still contains the known string
   str = read_file_to_str(tempname, RFTS_BIN, &st);
   tt_assert(str != NULL);
-  tt_int_op((uint64_t)st.st_size, ==, temp_str_len);
+  tt_u64_op((uint64_t)st.st_size, ==, temp_str_len);
   test_mem_op(temp_str, ==, str, temp_str_len);
 
  done: