diff options
author | Per Bothner <bothner@gcc.gnu.org> | 2004-01-19 23:35:21 -0800 |
---|---|---|
committer | Per Bothner <bothner@gcc.gnu.org> | 2004-01-19 23:35:21 -0800 |
commit | 54020b29a8760669d695760325b82e97f260df2c (patch) | |
tree | 20945584eac22bdf07f5096067e26e3c5dc754ed /gcc/cppfiles.c | |
parent | cec73eb50c290549a9f0f7fea6102cad73bb98e2 (diff) | |
download | gcc-54020b29a8760669d695760325b82e97f260df2c.zip gcc-54020b29a8760669d695760325b82e97f260df2c.tar.gz gcc-54020b29a8760669d695760325b82e97f260df2c.tar.bz2 |
Fix patch oops.
From-SVN: r76201
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 f7fdec6..cd735f5 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); |