aboutsummaryrefslogtreecommitdiff
path: root/gcc/go
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@google.com>2012-11-19 16:28:04 +0000
committerIan Lance Taylor <iant@google.com>2012-11-19 16:28:04 +0000
commit6ee0463112e48eace45558344b7bb7d7b57249d9 (patch)
tree1afb243d928ded7ba3539eca96b286c562a84bfc /gcc/go
parent30bee7b3d98ef87a507061feed8abc68f3d5e461 (diff)
PR translation/53764
compiler: Fix typo in error message. Reported by Roland Stigge. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@193626 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/go')
-rw-r--r--gcc/go/gofrontend/parse.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/go/gofrontend/parse.cc b/gcc/go/gofrontend/parse.cc
index ab2bb7cf29d..72059b88a55 100644
--- a/gcc/go/gofrontend/parse.cc
+++ b/gcc/go/gofrontend/parse.cc
@@ -2941,7 +2941,7 @@ Parse::primary_expr(bool may_be_sink, bool may_be_composite_lit,
if (t->named_type() != NULL
|| t->forward_declaration_type() != NULL)
error_at(start_loc,
- _("parentheses required around this composite literal"
+ _("parentheses required around this composite literal "
"to avoid parsing ambiguity"));
}
else if (is_parenthesized)