diff options
Diffstat (limited to 'gcc/cppmacro.c')
-rw-r--r-- | gcc/cppmacro.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/cppmacro.c b/gcc/cppmacro.c index 1dc902f..40c6176 100644 --- a/gcc/cppmacro.c +++ b/gcc/cppmacro.c @@ -1536,7 +1536,8 @@ check_trad_stringification (pfile, macro, string) { const cpp_hashnode *node = macro->params[i]; - if (NODE_LEN (node) == len && !memcmp (p, NODE_NAME (node), len)) + if (NODE_LEN (node) == len + && !memcmp (p, NODE_NAME (node), len)) { cpp_warning (pfile, "macro argument \"%s\" would be stringified with -traditional.", |