소스 검색

One more 64->32

Nick Mathewson 10 년 전
부모
커밋
de2010e9c2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/test/test_util.c

+ 1 - 1
src/test/test_util.c

@@ -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: