summaryrefslogtreecommitdiff
path: root/gcc/go
diff options
context:
space:
mode:
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2011-09-21 00:11:31 +0000
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2011-09-21 00:11:31 +0000
commit5c680ec435df1dc806e331ce009392dbaf00f268 (patch)
treedc242ef8d2ef35d927a790ec822cd4f8accb5cd5 /gcc/go
parent4ce21fe9c77754aacdbdb0a43ba1cf5360e7aad9 (diff)
downloadgcc-5c680ec435df1dc806e331ce009392dbaf00f268.tar.gz
Fix typo in error message.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@179025 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 bf084e04698..b91bfbdbf03 100644
--- a/gcc/go/gofrontend/parse.cc
+++ b/gcc/go/gofrontend/parse.cc
@@ -340,7 +340,7 @@ Parse::type_name(bool issue_error)
else
{
const std::string& packname(package->package_value()->name());
- error_at(location, "reference to undefined identifer %<%s.%s%>",
+ error_at(location, "reference to undefined identifier %<%s.%s%>",
Gogo::message_name(packname).c_str(),
Gogo::message_name(name).c_str());
issue_error = false;