Fix 32-bit case of rend_cache/entry_allocation

This commit is contained in:
Nick Mathewson
2015-10-07 14:31:21 -04:00
parent b23a0465f1
commit aeb9373158
+1 -1
View File
@@ -1138,7 +1138,7 @@ test_rend_cache_entry_allocation(void *data)
// Handles a non-null argument
e = tor_malloc_zero(sizeof(rend_cache_entry_t));
ret = rend_cache_entry_allocation(e);
tt_int_op(ret, OP_EQ, 88);
tt_int_op(ret, OP_GT, sizeof(rend_cache_entry_t));
done:
(void)0;