1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-19 18:26:32 +02:00

(obstack_base): Fix parentheses. From Paul Eggert.

This commit is contained in:
Jim Meyering
2004-06-24 05:53:54 +00:00
parent 678207c7d0
commit affbbb2238

View File

@@ -206,7 +206,7 @@ extern int obstack_exit_failure;
Note that this might not be the final address of the object
because a new chunk might be needed to hold the final size. */
#define obstack_base(h) (void *)((h)->object_base)
#define obstack_base(h) ((void *)(h)->object_base)
/* Size for allocating ordinary chunks. */