summaryrefslogtreecommitdiff
path: root/src/vm/methodtable.cpp
diff options
context:
space:
mode:
authorMichal Strehovský <MichalStrehovsky@users.noreply.github.com>2018-02-13 08:19:30 +0100
committerGitHub <noreply@github.com>2018-02-13 08:19:30 +0100
commit24680bd7883a1f8424766c5196b96b803dfb796d (patch)
treebdeebf16a61ae2b5903a2330635f9c12a9d1c2e0 /src/vm/methodtable.cpp
parentb83e8005cb6a343ee09c061d4f4bf1f9588c4687 (diff)
downloadcoreclr-24680bd7883a1f8424766c5196b96b803dfb796d.tar.gz
coreclr-24680bd7883a1f8424766c5196b96b803dfb796d.tar.bz2
coreclr-24680bd7883a1f8424766c5196b96b803dfb796d.zip
Fix ambiguous interface method error message (#16341)
Fixes #15864.
Diffstat (limited to 'src/vm/methodtable.cpp')
-rw-r--r--src/vm/methodtable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm/methodtable.cpp b/src/vm/methodtable.cpp
index 76d490d251..e8f9dccdc3 100644
--- a/src/vm/methodtable.cpp
+++ b/src/vm/methodtable.cpp
@@ -7072,8 +7072,8 @@ void ThrowExceptionForConflictingOverride(
COMPlusThrow(
kNotSupportedException,
IDS_CLASSLOAD_AMBIGUOUS_OVERRIDE,
- strInterfaceName,
strMethodName,
+ strInterfaceName,
strTargetClassName,
assemblyName);
}