From 1f01c3ecd197dc12ac7ebf05d2567d655496677a Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Thu, 2 Feb 2012 21:46:06 +0100 Subject: [PATCH] re PR middle-end/48071 (Blank line after 'all warnings being treated as errors') PR middle-end/48071 * diagnostic.c (diagnostic_finish): Remove trailing newlines. From-SVN: r183847 --- gcc/ChangeLog | 5 +++++ gcc/diagnostic.c | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 20548986257..42df0679ed8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-02-02 Jakub Jelinek + + PR middle-end/48071 + * diagnostic.c (diagnostic_finish): Remove trailing newlines. + 2012-02-02 Vladimir Makarov PR rtl-optimization/49800 diff --git a/gcc/diagnostic.c b/gcc/diagnostic.c index a8c0e669352..a68d6ce88ee 100644 --- a/gcc/diagnostic.c +++ b/gcc/diagnostic.c @@ -1,6 +1,6 @@ /* Language-independent diagnostic subroutines for the GNU Compiler Collection Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, - 2009, 2010 Free Software Foundation, Inc. + 2009, 2010, 2011, 2012 Free Software Foundation, Inc. Contributed by Gabriel Dos Reis This file is part of GCC. @@ -133,12 +133,12 @@ diagnostic_finish (diagnostic_context *context) /* -Werror was given. */ if (context->warning_as_error_requested) pp_verbatim (context->printer, - _("%s: all warnings being treated as errors\n"), + _("%s: all warnings being treated as errors"), progname); /* At least one -Werror= was given. */ else pp_verbatim (context->printer, - _("%s: some warnings being treated as errors\n"), + _("%s: some warnings being treated as errors"), progname); pp_flush (context->printer); }