From 5efacb1a2bb573a1a412d9dee0b2fd4eebdec450 Mon Sep 17 00:00:00 2001 From: obarthel Date: Sun, 10 Sep 2023 11:14:32 +0200 Subject: [PATCH] Fix for unnecessary compiler warnings. --- library/stdlib_calloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 library/stdlib_calloc.c diff --git a/library/stdlib_calloc.c b/library/stdlib_calloc.c old mode 100644 new mode 100755 index 366f60c..1d60b4d --- a/library/stdlib_calloc.c +++ b/library/stdlib_calloc.c @@ -48,7 +48,7 @@ /****************************************************************************/ __static void * -__calloc(size_t num_elements, size_t element_size, const char * file, int line) +__calloc(size_t num_elements, size_t element_size, const char * file UNUSED, int line UNUSED) { void * result = NULL; size_t total_size;