From: Geoffrey Keating Date: Fri, 14 Nov 2003 19:00:04 +0000 (+0000) Subject: cppfiles.c (_cpp_find_file): Make 'one or more PCH files were found' message comply... X-Git-Tag: releases/gcc-3.4.0~2299 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e235d8bfa033489aa77d9d30c4ae55d9cb7470b0;p=thirdparty%2Fgcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 64c3dbae99c3..ec1f762a674b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-11-14 Geoffrey Keating + + * cppfiles.c (_cpp_find_file): Make 'one or more PCH files were found' + message comply with GNU standards. + 2003-11-14 Richard Kenner PR/6552 diff --git a/gcc/cppfiles.c b/gcc/cppfiles.c index f455162be519..63e992124714 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; }