diff options
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/c-lex.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bf93aa4..e1e0c9e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-01-23 Neil Booth <neil@daikokuya.demon.co.uk> + + * c-lex.c (lex_charconst): Fix typo: s/p/str. + 2001-01-23 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> * rs6000.h (rs6000_return_addr): Move prototype from here... 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 |
