aboutsummaryrefslogtreecommitdiffstats
path: root/reftable/block_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'reftable/block_test.c')
-rw-r--r--reftable/block_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/reftable/block_test.c b/reftable/block_test.c
index dedb05c7d8..e162c6e33f 100644
--- a/reftable/block_test.c
+++ b/reftable/block_test.c
@@ -36,7 +36,7 @@ static void test_block_read_write(void)
int j = 0;
struct strbuf want = STRBUF_INIT;
- block.data = reftable_calloc(block_size);
+ REFTABLE_CALLOC_ARRAY(block.data, block_size);
block.len = block_size;
block.source = malloc_block_source();
block_writer_init(&bw, BLOCK_TYPE_REF, block.data, block_size,