From 2190c309e35ecd8af4444203315877b5dc5ca9dc Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Mon, 16 Nov 2015 23:24:05 +0100 Subject: m MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/malloc.c b/src/malloc.c index 719e713..3d48b56 100644 --- a/src/malloc.c +++ b/src/malloc.c @@ -115,7 +115,7 @@ void* calloc(size_t elem_count, size_t elem_size) void* ptr; size_t size; - MEM_OVERFLOW(umull, elem_count, elem_size, &size)); + MEM_OVERFLOW(umull, elem_count, elem_size, &size); ptr = MALLOC(size); if (ptr != NULL) explicit_bzero(ptr, size); -- cgit v1.2.3-70-g09d2