diff options
Diffstat (limited to 'test/allocator_test.c')
-rw-r--r-- | test/allocator_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/allocator_test.c b/test/allocator_test.c index 6850bdc..a6087e1 100644 --- a/test/allocator_test.c +++ b/test/allocator_test.c @@ -12,7 +12,7 @@ test_allocator(void) { // Just a basic smoke test to check that things seem to be working - const ZixAllocator* const allocator = zix_default_allocator(); + ZixAllocator* const allocator = zix_default_allocator(); char* const malloced = (char*)zix_malloc(allocator, 4); malloced[0] = 0; |