aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp
diff options
context:
space:
mode:
authorMark Mitchell <mmitchel@gcc.gnu.org>2002-08-02 18:56:48 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>2002-08-02 18:56:48 +0000
commit7c38703bf6e3d0e73f51871f22159d9a9ac01c8e (patch)
tree49e485a5fa6da52eac1a86a72bcacf46b9f79feb /gcc/cp
parent4a34e0e8cf793442874c3fa4d7edafa96b9da5ba (diff)
downloadgcc-7c38703bf6e3d0e73f51871f22159d9a9ac01c8e.zip
gcc-7c38703bf6e3d0e73f51871f22159d9a9ac01c8e.tar.gz
gcc-7c38703bf6e3d0e73f51871f22159d9a9ac01c8e.tar.bz2
Fix typo
From-SVN: r55995
Diffstat (limited to 'gcc/cp')
-rw-r--r--gcc/cp/call.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/call.c b/gcc/cp/call.c
index 7b938b9..6dea0dd 100644
--- a/gcc/cp/call.c
+++ b/gcc/cp/call.c
@@ -551,7 +551,7 @@ build_method_call (instance, name, parms, basetype_path, flags)
if (fn && TREE_CODE (fn) == TREE_LIST && !BASELINK_P (fn))
{
- error ("request for member `%D' is ambiguos", name);
+ error ("request for member `%D' is ambiguous", name);
print_candidates (fn);
return error_mark_node;
}