commit 3fdc07df5b59d27fb46c7d59f744372ffc45af5b
Author: Nick Mathewson <[email protected]>
Date:   Tue Aug 11 09:07:27 2015 -0400

    Fix a 32-bit compilation warning
---
 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 f8e7661..a6c423d 100644
--- a/src/test/test_util.c
+++ b/src/test/test_util.c
@@ -4355,7 +4355,7 @@ test_util_get_avail_disk_space(void *arg)
 
   /* No answer for nonexistent directory */
   val = tor_get_avail_disk_space("/akljasdfklsajdklasjkldjsa");
-  tt_int_op(val, OP_EQ, -1);
+  tt_i64_op(val, OP_EQ, -1);
 
   /* Try the current directory */
   val = tor_get_avail_disk_space(".");

_______________________________________________
tor-commits mailing list
[email protected]
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits

Reply via email to