aboutsummaryrefslogtreecommitdiff
path: root/csv-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'csv-test.c')
-rw-r--r--csv-test.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/csv-test.c b/csv-test.c
index 854df7f..c99c049 100644
--- a/csv-test.c
+++ b/csv-test.c
@@ -16,7 +16,7 @@
16 (void) fclose(f); \ 16 (void) fclose(f); \
17 f = NULL 17 f = NULL
18 18
19#define UNUSED(x) (void) (sizeof((x), 0)) 19#define UNUSED(x) (void) (x)
20 20
21void 21void
22test_empty_object(void) 22test_empty_object(void)
@@ -508,6 +508,7 @@ my_allocate(size_t n, size_t size, void *cb_arg)
508 UNUSED(cb_arg); 508 UNUSED(cb_arg);
509 509
510 void *ptr = calloc(n, size); 510 void *ptr = calloc(n, size);
511
511 return ptr; 512 return ptr;
512} 513}
513 514