From: Paul Eggert <eggert@cs.ucla.edu> Date: Sat, 26 Oct 2024 17:07:53 +0000 (-0700) Subject: posix_memalign-tests: fix message typo X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=9b277bc3415fa5d621889d2b32115fde393c416a;p=gnulib.git posix_memalign-tests: fix message typo * tests/test-posix_memalign.c (main): Fix diagnostic typo. --- diff --git a/ChangeLog b/ChangeLog index 68af8c364e..76f078ca84 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2024-10-26 Paul Eggert <eggert@cs.ucla.edu> + + posix_memalign-tests: fix message typo + * tests/test-posix_memalign.c (main): Fix diagnostic typo. + 2024-10-26 Bruno Haible <bruno@clisp.org> regex: Avoid dialog while running configure test on Haiku/x86_64. diff --git a/tests/test-posix_memalign.c b/tests/test-posix_memalign.c index 803e40c5f5..8788cf2ea0 100644 --- a/tests/test-posix_memalign.c +++ b/tests/test-posix_memalign.c @@ -101,7 +101,7 @@ main (int argc, char *argv[]) return 0; #else - fputs ("Skipping test: function 'aligned_alloc' does not exist\n", stderr); + fputs ("Skipping test: function 'posix_memalign' does not exist\n", stderr); return 77; #endif }