From 1f38316f6af7bf63e5e7dd187ff6456e07ad743e Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 5 Nov 2024 14:46:53 -0800 Subject: [PATCH] Fix comment typo re malloc Problem reported by Bruno Haible in: https://lists.gnu.org/r/bug-gnulib/2024-11/msg00048.html --- lib/autoconf/functions.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/autoconf/functions.m4 b/lib/autoconf/functions.m4 index 9d5f5bb8..d7f389ac 100644 --- a/lib/autoconf/functions.m4 +++ b/lib/autoconf/functions.m4 @@ -970,7 +970,7 @@ fi # _AC_FUNC_MALLOC_IF(IF-WORKS, IF-NOT[, UNKNOWN-ASSUME]) # ------------------------------------------------------ -# If 'malloc (0, 0)' returns nonnull, run IF-WORKS, otherwise, IF-NOT. +# If 'malloc (0)' returns nonnull, run IF-WORKS, otherwise, IF-NOT. # If it is not known whether it works, assume the shell word UNKNOWN-ASSUME, # which should end in "yes" or in something else (the latter is the default). AC_DEFUN([_AC_FUNC_MALLOC_IF], -- 2.39.5