diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-09-21 00:11:31 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-09-21 00:11:31 +0000 |
commit | 311255f492c1206d135d9ec7dbccad2b50550e37 (patch) | |
tree | dc242ef8d2ef35d927a790ec822cd4f8accb5cd5 | |
parent | bbc0f2aa16aa9039264f542012aeca249dc70b35 (diff) | |
download | gcc-311255f492c1206d135d9ec7dbccad2b50550e37.zip gcc-311255f492c1206d135d9ec7dbccad2b50550e37.tar.gz gcc-311255f492c1206d135d9ec7dbccad2b50550e37.tar.bz2 |
Fix typo in error message.
From-SVN: r179025
-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 bf084e0..b91bfbd 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; |