]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
lib: Fix a typo
authorVolker Lendecke <vl@samba.org>
Sat, 13 Aug 2022 11:30:26 +0000 (13:30 +0200)
committerJeremy Allison <jra@samba.org>
Fri, 26 Aug 2022 18:54:37 +0000 (18:54 +0000)
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/lib/util_malloc.c

index ff78db65003782b3c9c2f387bbb3a9f9a3994581..f142bf72a3bedced07754792f7795749c3a40462 100644 (file)
@@ -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 */