diff options
Diffstat (limited to 'gcc/c-lex.c')
-rw-r--r-- | gcc/c-lex.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c index 18a50cb42af..4d4e4815c5f 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -1440,12 +1440,12 @@ c_lex (value) case CPP_OPEN_BRACE: indent_level++; break; case CPP_CLOSE_BRACE: indent_level--; break; - /* Issue this error here, where we can get at tok.val.aux. */ + /* Issue this error here, where we can get at tok.val.c. */ case CPP_OTHER: - if (ISGRAPH (tok.val.aux)) - error ("stray '%c' in program", tok.val.aux); + if (ISGRAPH (tok.val.c)) + error ("stray '%c' in program", tok.val.c); else - error ("stray '\\%#o' in program", tok.val.aux); + error ("stray '\\%#o' in program", tok.val.c); goto retry; case CPP_NAME: |