diff options
author | Joseph Myers <joseph@codesourcery.com> | 2004-11-19 19:54:39 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2004-11-19 19:54:39 +0000 |
commit | 72c4e4db032ca8db78174fba663b83409e5d4484 (patch) | |
tree | f3a1c34ffbf0458fde849b3dbe460d451203f7dc /gcc/c-decl.c | |
parent | 63dfe6ff6fdc78b68ce28e222f6fd9bb616199c9 (diff) | |
download | gcc-72c4e4db032ca8db78174fba663b83409e5d4484.zip gcc-72c4e4db032ca8db78174fba663b83409e5d4484.tar.gz gcc-72c4e4db032ca8db78174fba663b83409e5d4484.tar.bz2 |
c-decl.c (push_scope): Remove "\n" from end of diagnostic for too many nested scopes.
* c-decl.c (push_scope): Remove "\n" from end of diagnostic for
too many nested scopes.
From-SVN: r90936
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r-- | gcc/c-decl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 709abed..3c8dbee 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -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; |