From b6d8272551435098c716c546a5201206517e5da9 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Tue, 6 Oct 2015 18:32:19 +0000 Subject: modernize style: "return" is not a function --- test-ohash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test-ohash.c') diff --git a/test-ohash.c b/test-ohash.c index 522ad708..138d520d 100644 --- a/test-ohash.c +++ b/test-ohash.c @@ -3,8 +3,8 @@ #include #include -void *xmalloc(size_t sz, void *arg) { return(calloc(1,sz)); } -void *xcalloc(size_t nmemb, size_t sz, void *arg) { return(calloc(nmemb,sz)); } +void *xmalloc(size_t sz, void *arg) { return calloc(1,sz); } +void *xcalloc(size_t nmemb, size_t sz, void *arg) { return calloc(nmemb,sz); } void xfree(void *p, void *arg) { free(p); } int -- cgit v1.2.3