c-decl.c (push_scope): Remove "\n" from end of diagnostic for too many nested scopes.
authorJoseph Myers <joseph@codesourcery.com>
Fri, 19 Nov 2004 19:54:39 +0000 (19:54 +0000)
committerJoseph Myers <jsm28@gcc.gnu.org>
Fri, 19 Nov 2004 19:54:39 +0000 (19:54 +0000)
* c-decl.c (push_scope): Remove "\n" from end of diagnostic for
too many nested scopes.

From-SVN: r90936

gcc/ChangeLog
gcc/c-decl.c

index 9026a1d7ec5b8298e1eae8d611f299121269c45d..6b8590dfca4bd086dfb9373bd1b6926622e89148 100644 (file)
@@ -1,3 +1,8 @@
+2004-11-19  Joseph S. Myers  <joseph@codesourcery.com>
+
+       * c-decl.c (push_scope): Remove "\n" from end of diagnostic for
+       too many nested scopes.
+
 2004-11-19  Dorit Naishlos  <dorit@il.ibm.com>
 
        PR tree-opt/18181
index 709abed0365e20310dc33d20139cdf6d56def42b..3c8dbeef733397928944d5d2d4cdf8e25efa2d95 100644 (file)
@@ -634,7 +634,7 @@ push_scope (void)
       if (current_scope && scope->depth == 0)
        {
          scope->depth--;
-         sorry ("GCC supports only %u nested scopes\n", scope->depth);
+         sorry ("GCC supports only %u nested scopes", scope->depth);
        }
 
       current_scope        = scope;