aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGeoffrey Keating <geoffk@apple.com>2003-11-14 19:00:04 +0000
committerGeoffrey Keating <geoffk@gcc.gnu.org>2003-11-14 19:00:04 +0000
commite235d8bfa033489aa77d9d30c4ae55d9cb7470b0 (patch)
treebc436ae9cb4bb87c1693e604b10b04529f719c5c /gcc
parentec75414ff74e7af8c95a3490fcc05b65e3bdf4a6 (diff)
downloadgcc-e235d8bfa033489aa77d9d30c4ae55d9cb7470b0.zip
gcc-e235d8bfa033489aa77d9d30c4ae55d9cb7470b0.tar.gz
gcc-e235d8bfa033489aa77d9d30c4ae55d9cb7470b0.tar.bz2
cppfiles.c (_cpp_find_file): Make 'one or more PCH files were found' message comply with GNU standards.
* cppfiles.c (_cpp_find_file): Make 'one or more PCH files were found' message comply with GNU standards. From-SVN: r73611
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/cppfiles.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 64c3dba..ec1f762 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2003-11-14 Geoffrey Keating <geoffk@apple.com>
+
+ * cppfiles.c (_cpp_find_file): Make 'one or more PCH files were found'
+ message comply with GNU standards.
+
2003-11-14 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
PR/6552
diff --git a/gcc/cppfiles.c b/gcc/cppfiles.c
index f455162..63e9921 100644
--- a/gcc/cppfiles.c
+++ b/gcc/cppfiles.c
@@ -389,10 +389,10 @@ _cpp_find_file (cpp_reader *pfile, const char *fname, cpp_dir *start_dir, bool f
if (invalid_pch)
{
cpp_error (pfile, CPP_DL_ERROR,
- "One or more PCH files were found, but they were invalid.");
- if (! cpp_get_options (pfile)->warn_invalid_pch)
+ "one or more PCH files were found, but they were invalid");
+ if (!cpp_get_options (pfile)->warn_invalid_pch)
cpp_error (pfile, CPP_DL_ERROR,
- "Use -Winvalid-pch for more information.");
+ "use -Winvalid-pch for more information");
}
break;
}