Browse Source

Fix a 32-bit compilation warning

Nick Mathewson 10 years ago
parent
commit
3fdc07df5b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/test/test_util.c

+ 1 - 1
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(".");