From: Volker Lendecke Date: Sat, 13 Aug 2022 11:30:26 +0000 (+0200) Subject: lib: Fix a typo X-Git-Tag: talloc-2.4.0~1265 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1025349ae234cd3bbd43a0e5f911e7da089a5600;p=thirdparty%2Fsamba.git lib: Fix a typo Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- 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 */