From 1025349ae234cd3bbd43a0e5f911e7da089a5600 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 13 Aug 2022 13:30:26 +0200 Subject: [PATCH] lib: Fix a typo Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- source3/lib/util_malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/lib/util_malloc.c b/source3/lib/util_malloc.c index ff78db65003..f142bf72a3b 100644 --- a/source3/lib/util_malloc.c +++ b/source3/lib/util_malloc.c @@ -47,7 +47,7 @@ static void *realloc_(void *ptr, size_t size) { #undef realloc return realloc(ptr, size); -#define realloc(p,s) __ERROR_DONT_USE_RELLOC_DIRECTLY +#define realloc(p,s) __ERROR_DONT_USE_REALLOC_DIRECTLY } #endif /* PARANOID_MALLOC_CHECKER */ -- 2.47.3