From: Paul Eggert Date: Wed, 7 May 2025 07:17:47 +0000 (-0700) Subject: obstack: omit a parenthesis pair X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=099b2efb591ed1abe5bbc747d93652c63af9dcef;p=thirdparty%2Fgnulib.git obstack: omit a parenthesis pair * lib/obstack.in.h (obstack_free) [!__GNUC__]: Omit an unnecessary pair of parentheses that are also omitted in glibc. --- diff --git a/lib/obstack.in.h b/lib/obstack.in.h index 174cab9d0a..e361dc67ac 100644 --- a/lib/obstack.in.h +++ b/lib/obstack.in.h @@ -580,7 +580,7 @@ extern int obstack_exit_failure; (((h)->temp.tempptr > (void *) (h)->chunk \ && (h)->temp.tempptr < (void *) (h)->chunk_limit) \ ? (void) ((h)->next_free = (h)->object_base = (char *) (h)->temp.tempptr) \ - : __obstack_free ((h), (h)->temp.tempptr))) + : __obstack_free (h, (h)->temp.tempptr))) #endif /* not __GNUC__ */