diff options
author | Jim Meyering <jim@meyering.net> | 2004-06-24 05:53:54 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2004-06-24 05:53:54 +0000 |
commit | affbbb22387acbdb323b0394e1d079a0cbd944f1 (patch) | |
tree | 4792805705be61aaedd517660e555be516676892 | |
parent | 678207c7d0cc1f61868e0dfc3414f96af50c177d (diff) | |
download | coreutils-affbbb22387acbdb323b0394e1d079a0cbd944f1.tar.xz |
(obstack_base): Fix parentheses. From Paul Eggert.
-rw-r--r-- | lib/obstack.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/obstack.h b/lib/obstack.h index 8d322b8e1..dec18aca8 100644 --- a/lib/obstack.h +++ b/lib/obstack.h @@ -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. */ |