aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-lex.c
diff options
context:
space:
mode:
authorNeil Booth <neil@daikokuya.demon.co.uk>2001-01-23 23:18:43 +0000
committerNeil Booth <neil@gcc.gnu.org>2001-01-23 23:18:43 +0000
commit955dc84a48c02e062293b115f8c29619570111bd (patch)
treebc506df550ae04e0b22205c2b7cdb47b79c0dd71 /gcc/c-lex.c
parent0d5d970bca624a00478efad15373bdd77f0d80cf (diff)
downloadgcc-955dc84a48c02e062293b115f8c29619570111bd.zip
gcc-955dc84a48c02e062293b115f8c29619570111bd.tar.gz
gcc-955dc84a48c02e062293b115f8c29619570111bd.tar.bz2
* c-lex.c (lex_charconst): Fix typo: s/p/str.
From-SVN: r39215
Diffstat (limited to 'gcc/c-lex.c')
-rw-r--r--gcc/c-lex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c
index ddfee8d..358e5d1 100644
--- a/gcc/c-lex.c
+++ b/gcc/c-lex.c
@@ -1643,7 +1643,7 @@ lex_charconst (str, len, wide)
}
else
{
- p += char_len;
+ str += char_len;
c = wc;
}
#else