From 2e2f8a9bcec2f80430bb025b1dde25a3f057c622 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Tue, 4 Jun 2024 16:23:33 +0200 Subject: [PATCH] [mono] Fix typo in log message. --- .../MarshalingPInvokeScanner/MarshalingPInvokeScanner.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tasks/MonoTargetsTasks/MarshalingPInvokeScanner/MarshalingPInvokeScanner.cs b/src/tasks/MonoTargetsTasks/MarshalingPInvokeScanner/MarshalingPInvokeScanner.cs index 5f7ec7fd590e3f..31cb896cf68fa2 100644 --- a/src/tasks/MonoTargetsTasks/MarshalingPInvokeScanner/MarshalingPInvokeScanner.cs +++ b/src/tasks/MonoTargetsTasks/MarshalingPInvokeScanner/MarshalingPInvokeScanner.cs @@ -148,7 +148,7 @@ private bool IsAssemblyIncompatible(string assyPath, MinimalMarshalingTypeCompat MethodSignature sgn = decoder.DecodeMethodSignature(ref sgnBlobReader); if(sgn.ReturnType == Compatibility.Incompatible || sgn.ParameterTypes.Any(p => p == Compatibility.Incompatible)) { - Log.LogMessage(MessageImportance.Low, string.Format("Assembly {0} requires marhsal-ilgen for method {1}.{2}:{3} (first pass).", + Log.LogMessage(MessageImportance.Low, string.Format("Assembly {0} requires marshal-ilgen for method {1}.{2}:{3} (first pass).", assyPath, ns, name, mdtReader.GetString(mthDef.Name))); return true;