diff options
author | Jason Merrill <jason@gcc.gnu.org> | 2000-01-11 16:23:49 -0500 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2000-01-11 16:23:49 -0500 |
commit | 203588e7ff0bb1940648ef3c45ed0a8a958fea17 (patch) | |
tree | 8e748484e3d38b01067f5dc2192898e3940aacb2 /gcc/cpphash.c | |
parent | 7cdc045ed645bd869a670e56c2fe4b7fb507b869 (diff) | |
download | gcc-203588e7ff0bb1940648ef3c45ed0a8a958fea17.zip gcc-203588e7ff0bb1940648ef3c45ed0a8a958fea17.tar.gz gcc-203588e7ff0bb1940648ef3c45ed0a8a958fea17.tar.bz2 |
fix typos
From-SVN: r31336
Diffstat (limited to 'gcc/cpphash.c')
-rw-r--r-- | gcc/cpphash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpphash.c b/gcc/cpphash.c index e99e6c7..76ee8bf 100644 --- a/gcc/cpphash.c +++ b/gcc/cpphash.c @@ -131,7 +131,7 @@ cpp_lookup (pfile, name, len, hash) if (len < 0) { - for (bp = name; is_idchar(*bp); bp++); + for (bp = name; is_idchar (*bp); bp++); len = bp - name; } |