cppfiles.c (_cpp_find_file): Make 'one or more PCH files were found' message comply...
authorGeoffrey Keating <geoffk@apple.com>
Fri, 14 Nov 2003 19:00:04 +0000 (19:00 +0000)
committerGeoffrey Keating <geoffk@gcc.gnu.org>
Fri, 14 Nov 2003 19:00:04 +0000 (19:00 +0000)
* cppfiles.c (_cpp_find_file): Make 'one or more PCH files were found'
message comply with GNU standards.

From-SVN: r73611

gcc/ChangeLog
gcc/cppfiles.c

index 64c3dbae99c3d6b7055b85fc528b96145da56334..ec1f762a674b5bf291772fea11dac67b9adc7a09 100644 (file)
@@ -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
index f455162be5193dde75d942363b1909c08ea17e39..63e9921247144fd813574a321efb7aa376f7af20 100644 (file)
@@ -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;
        }