From 9cf0c4a012b214504e19fb92b23d5f0f3c9da097 Mon Sep 17 00:00:00 2001 From: Florian Schmidt Date: Tue, 14 Nov 2017 09:01:14 +0100 Subject: [PATCH] newlib/libc/stdlib/realloc.c: fix variable name The variable doesn't follow the convention of having the same name as the function it's bundled with. Furthermore, it clashes with the variable of the same name in newlib/libc/stdlib/calloc.c. Signed-off-by: Florian Schmidt --- newlib/libc/stdlib/realloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newlib/libc/stdlib/realloc.c b/newlib/libc/stdlib/realloc.c index 2caa6e4d2..0cdbdb619 100644 --- a/newlib/libc/stdlib/realloc.c +++ b/newlib/libc/stdlib/realloc.c @@ -1,5 +1,5 @@ #ifdef MALLOC_PROVIDED -int _dummy_calloc = 1; +int _dummy_realloc = 1; #else /* realloc.c -- a wrapper for realloc_r. */