diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2012-11-19 16:28:04 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2012-11-19 16:28:04 +0000 |
commit | 041af827a036308ca15fc0e11ba4b4b49f847efc (patch) | |
tree | 1afb243d928ded7ba3539eca96b286c562a84bfc /gcc/go | |
parent | e053cf01e31602bc38588ab3a2921678afd30f8d (diff) | |
download | gcc-041af827a036308ca15fc0e11ba4b4b49f847efc.zip gcc-041af827a036308ca15fc0e11ba4b4b49f847efc.tar.gz gcc-041af827a036308ca15fc0e11ba4b4b49f847efc.tar.bz2 |
re PR translation/53764 (Typo in translatable string: "literalto")
PR translation/53764
compiler: Fix typo in error message.
Reported by Roland Stigge.
From-SVN: r193626
Diffstat (limited to 'gcc/go')
-rw-r--r-- | gcc/go/gofrontend/parse.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/go/gofrontend/parse.cc b/gcc/go/gofrontend/parse.cc index ab2bb7c..72059b8 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) |