From: Neil Booth Date: Tue, 23 Jan 2001 23:18:43 +0000 (+0000) Subject: * c-lex.c (lex_charconst): Fix typo: s/p/str. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=955dc84a48c02e062293b115f8c29619570111bd;p=gcc.git * c-lex.c (lex_charconst): Fix typo: s/p/str. From-SVN: r39215 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bf93aa421fb..e1e0c9e2980 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-01-23 Neil Booth + + * c-lex.c (lex_charconst): Fix typo: s/p/str. + 2001-01-23 Franz Sirl * rs6000.h (rs6000_return_addr): Move prototype from here... diff --git a/gcc/c-lex.c b/gcc/c-lex.c index ddfee8dbd86..358e5d1532b 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