]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(obstack_base): Fix parentheses. From Paul Eggert.
authorJim Meyering <jim@meyering.net>
Thu, 24 Jun 2004 05:53:54 +0000 (05:53 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 24 Jun 2004 05:53:54 +0000 (05:53 +0000)
lib/obstack.h

index 8d322b8e1a58d232e23ed07c964a20363a906f65..dec18aca8678b33ad2b596332041188684016f2b 100644 (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.  */