From: Paul Eggert Date: Tue, 6 May 2025 22:14:50 +0000 (-0700) Subject: obstack: fix comment X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=10f5798abc5e8ac8c4be0c8339e37bca14fd5957;p=thirdparty%2Fgnulib.git obstack: fix comment * lib/obstack.c: Fix comment along the lines suggested by Bruno Haible in: https://lists.gnu.org/r/bug-gnulib/2025-05/msg00074.html --- diff --git a/lib/obstack.c b/lib/obstack.c index 2313437e3a..d6d1510b09 100644 --- a/lib/obstack.c +++ b/lib/obstack.c @@ -31,7 +31,7 @@ /* If GCC, or if an oddball (testing?) host that #defines __alignof__, use the already-supplied __alignof__. Otherwise, this must be Gnulib - (as glibc assumes GCC); defer to Gnulib's alignof_type. */ + (as glibc assumes GCC); defer to Gnulib's alignof. */ #if !defined __GNUC__ && !defined __alignof__ # define __alignof__(type) alignof (type) #endif