diff options
author | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-20 07:35:21 +0000 |
---|---|---|
committer | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-20 07:35:21 +0000 |
commit | 86c1a6877cbb8267ace540da96ebc0ca98a88afa (patch) | |
tree | 20945584eac22bdf07f5096067e26e3c5dc754ed /gcc/cppfiles.c | |
parent | fe17ae9e33e49ec9ba7ce453f4544adda9fef417 (diff) | |
download | gcc-86c1a6877cbb8267ace540da96ebc0ca98a88afa.tar.gz |
Fix patch oops.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@76201 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cppfiles.c')
-rw-r--r-- | gcc/cppfiles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cppfiles.c b/gcc/cppfiles.c index f7fdec6b5e6..cd735f59834 100644 --- a/gcc/cppfiles.c +++ b/gcc/cppfiles.c @@ -1257,7 +1257,7 @@ validate_pch (cpp_reader *pfile, _cpp_file *file, const char *pchname) if (CPP_OPTION (pfile, print_include_names)) { unsigned int i; - for (i = 1; i < pfile->line_maps.depth; i++) + for (i = 1; i < pfile->line_table->depth; i++) putc ('.', stderr); fprintf (stderr, "%c %s\n", valid ? '!' : 'x', pchname); |