aboutsummaryrefslogtreecommitdiff
path: root/gcc/cppmacro.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/cppmacro.c')
-rw-r--r--gcc/cppmacro.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cppmacro.c b/gcc/cppmacro.c
index 00f2dfb..ade67d7 100644
--- a/gcc/cppmacro.c
+++ b/gcc/cppmacro.c
@@ -595,7 +595,7 @@ dump_macro_args (fp, list)
unsigned int len;
len = ustrlen (param);
- if (!list->flags & VAR_ARGS || ustrcmp (param, U"__VA_ARGS__"))
+ if (!(list->flags & VAR_ARGS) || ustrcmp (param, U"__VA_ARGS__"))
ufputs (param, fp);
if (i < list->paramc)
fputs (", ", fp);