Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFadi Hanna <fadim@microsoft.com>2017-09-13 20:12:40 +0300
committerFadi Hanna <fadim@microsoft.com>2017-09-13 20:12:40 +0300
commitdc9858ecad35ead56f413b307367950018197e79 (patch)
treefc38295fe5d5ca73328bb573e614fceb1e685200 /src/Native/Runtime/unix
parent92a6a3b1ae4aff4b3a904fed104d253f7d863a36 (diff)
Fix for CI build breaks
[tfs-changeset: 1673884]
Diffstat (limited to 'src/Native/Runtime/unix')
-rw-r--r--src/Native/Runtime/unix/UnixNativeCodeManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Native/Runtime/unix/UnixNativeCodeManager.cpp b/src/Native/Runtime/unix/UnixNativeCodeManager.cpp
index 445b6e00a..788d81d0c 100644
--- a/src/Native/Runtime/unix/UnixNativeCodeManager.cpp
+++ b/src/Native/Runtime/unix/UnixNativeCodeManager.cpp
@@ -368,7 +368,7 @@ void * UnixNativeCodeManager::GetClasslibFunction(ClasslibFunctionId functionId)
PTR_VOID UnixNativeCodeManager::GetAssociatedData(PTR_VOID ControlPC)
{
UnixNativeMethodInfo methodInfo;
- if (!FindMethodInfo(ControlPC, &methodInfo))
+ if (!FindMethodInfo(ControlPC, (MethodInfo*)&methodInfo))
return NULL;
PTR_UInt8 p = methodInfo.pMainLSDA;