[tor-commits] [tor/master] One more 64->32
nickm at torproject.org
nickm at torproject.org
Thu May 8 18:10:34 UTC 2014
commit de2010e9c229cb130c30659aa62122529c125637
Author: Nick Mathewson <nickm at torproject.org>
Date: Thu May 8 14:10:30 2014 -0400
One more 64->32
---
src/test/test_util.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/test/test_util.c b/src/test/test_util.c
index 6f3b7e3..d66be32 100644
--- a/src/test/test_util.c
+++ b/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:
More information about the tor-commits
mailing list