diff options
author | Neil Booth <neil@daikokuya.demon.co.uk> | 2001-08-11 08:02:54 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-08-11 08:02:54 +0000 |
commit | f80f7e8cd8e2b88fc2e9c8025f2e2c228f1b68ec (patch) | |
tree | dfc3479970901e5fe830c8e6d7d22f9e647049c6 /gcc/cpphash.h | |
parent | 47d89cf3e65223298aef15f371a4e59511e0ad31 (diff) | |
download | gcc-f80f7e8cd8e2b88fc2e9c8025f2e2c228f1b68ec.zip gcc-f80f7e8cd8e2b88fc2e9c8025f2e2c228f1b68ec.tar.gz gcc-f80f7e8cd8e2b88fc2e9c8025f2e2c228f1b68ec.tar.bz2 |
cpphash.h, cpplib.c: Correct erroneous previous checkin.
* cpphash.h, cpplib.c: Correct erroneous previous checkin.
Co-Authored-By: Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
From-SVN: r44790
Diffstat (limited to 'gcc/cpphash.h')
-rw-r--r-- | gcc/cpphash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpphash.h b/gcc/cpphash.h index 366655b..cbca913 100644 --- a/gcc/cpphash.h +++ b/gcc/cpphash.h @@ -66,7 +66,7 @@ struct cpp_chunk typedef struct cpp_pool cpp_pool; struct cpp_pool { - struct cpp_chunk *cur, *locked, *first; + struct cpp_chunk *cur, *locked; unsigned char *pos; /* Current position. */ unsigned int align; unsigned int locks; |