From: Bruno Haible Date: Thu, 31 Oct 2024 11:09:46 +0000 (+0100) Subject: aligned_alloc: Fix comment. X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=8be7e3ed25bda11b8c8db97118444e947098377c;p=gnulib.git aligned_alloc: Fix comment. * m4/aligned_alloc.m4 (gl_FUNC_ALIGNED_ALLOC): Fix typo in comment. --- diff --git a/ChangeLog b/ChangeLog index e8ad9e1ad0..a603040997 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2024-10-31 Bruno Haible + + aligned_alloc: Fix comment. + * m4/aligned_alloc.m4 (gl_FUNC_ALIGNED_ALLOC): Fix typo in comment. + 2024-10-31 Bruno Haible assert-h: Allow mixed use of gcc/g++ also on Haiku 2022. diff --git a/m4/aligned_alloc.m4 b/m4/aligned_alloc.m4 index 1311ea3c97..2d4a377e19 100644 --- a/m4/aligned_alloc.m4 +++ b/m4/aligned_alloc.m4 @@ -1,5 +1,5 @@ # aligned_alloc.m4 -# serial 7 +# serial 8 dnl Copyright (C) 2020-2024 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -25,7 +25,7 @@ AC_DEFUN([gl_FUNC_ALIGNED_ALLOC], [AC_LANG_PROGRAM( [[#include /* Use paligned_alloc to test; 'volatile' prevents the compiler - from optimizing the malloc call away. */ + from optimizing the aligned_alloc call away. */ void *(*volatile paligned_alloc) (size_t, size_t) = aligned_alloc;]], [[void *p = paligned_alloc (2, 18);