From: Marek Polacek Date: Tue, 19 Aug 2014 15:52:02 +0000 (+0000) Subject: * lex.c (_cpp_lex_direct): Fix a typo. X-Git-Tag: releases/gcc-5.1.0~5366 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3f4f5c9ad5536025c531a8702af9254ffe97a0ca;p=thirdparty%2Fgcc.git * lex.c (_cpp_lex_direct): Fix a typo. From-SVN: r214166 --- diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog index a173909b059e..6b8fe2835a3a 100644 --- a/libcpp/ChangeLog +++ b/libcpp/ChangeLog @@ -1,3 +1,7 @@ +2014-08-19 Marek Polacek + + * lex.c (_cpp_lex_direct): Fix a typo. + 2014-08-19 Marek Polacek * charset.c (_cpp_valid_ucn): Warn only if -Wc90-c99-compat. diff --git a/libcpp/lex.c b/libcpp/lex.c index 0713f65d8da6..827cfb0d75f3 100644 --- a/libcpp/lex.c +++ b/libcpp/lex.c @@ -2341,7 +2341,7 @@ _cpp_lex_direct (cpp_reader *pfile) && ! buffer->warned_cplusplus_comments) { cpp_error (pfile, CPP_DL_WARNING, - "C++ style comments are are incompatible with C90"); + "C++ style comments are incompatible with C90"); cpp_error (pfile, CPP_DL_WARNING, "(this will be reported only once per input file)"); buffer->warned_cplusplus_comments = 1;