From: Paul Eggert Date: Wed, 7 May 2025 19:07:46 +0000 (-0700) Subject: Omit a parenthesis pair again (fixing inadvertent revert) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8da68072410ed2ec367079f34d3c0afa8def38d3;p=thirdparty%2Fgnulib.git Omit a parenthesis pair again (fixing inadvertent revert) --- diff --git a/lib/obstack.in.h b/lib/obstack.in.h index 4b133c32cc..698b6b37a7 100644 --- a/lib/obstack.in.h +++ b/lib/obstack.in.h @@ -593,7 +593,7 @@ extern int obstack_exit_failure; (((_OBSTACK_CPTR) (h)->chunk < (OBSTACK_CPTR) (h)->temp.tempptr \ && (_OBSTACK_CPTR) (h)->temp.tempptr < (_OBSTACK_CPTR) (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__-like */