]> git.ipfire.org Git - thirdparty/gnulib.git/commitdiff
obstack: fix comment
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 6 May 2025 22:14:50 +0000 (15:14 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 6 May 2025 22:16:12 +0000 (15:16 -0700)
* lib/obstack.c: Fix comment along the lines suggested
by Bruno Haible in:
https://lists.gnu.org/r/bug-gnulib/2025-05/msg00074.html

lib/obstack.c

index 2313437e3ade8e6e3c1444f211b04e7271a9eb98..d6d1510b092285195306d5aafd9db97aadd66be9 100644 (file)
@@ -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