aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2014-05-08 14:10:30 -0400
committerNick Mathewson <nickm@torproject.org>2014-05-08 14:10:30 -0400
commitde2010e9c229cb130c30659aa62122529c125637 (patch)
tree6f8a25bd5e9b1d6ad335c96ed2acb49bb7ce3983 /src/test
parent28538069b2f1909a7600ec6d25f8efb78be496fd (diff)
downloadtor-de2010e9c229cb130c30659aa62122529c125637.tar
tor-de2010e9c229cb130c30659aa62122529c125637.tar.gz
One more 64->32
Diffstat (limited to 'src/test')
-rw-r--r--src/test/test_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_util.c b/src/test/test_util.c
index 6f3b7e30b..d66be32a7 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: