* lib/obstack.in.h (obstack_free) [!__GNUC__]: Omit an unnecessary pair of parentheses that are also omitted in glibc. --- lib/obstack.in.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
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__ */ -- 2.48.1