summaryrefslogtreecommitdiff
path: root/src/utilcode/clrhost_nodependencies.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utilcode/clrhost_nodependencies.cpp')
-rw-r--r--src/utilcode/clrhost_nodependencies.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utilcode/clrhost_nodependencies.cpp b/src/utilcode/clrhost_nodependencies.cpp
index da4e0252e2..a069d24f7f 100644
--- a/src/utilcode/clrhost_nodependencies.cpp
+++ b/src/utilcode/clrhost_nodependencies.cpp
@@ -745,12 +745,12 @@ void ClrFlsAssociateCallback(DWORD slot, PTLS_CALLBACK_FUNCTION callback)
GetExecutionEngine()->TLS_AssociateCallback(slot, callback);
}
-void ** __stdcall ClrFlsGetBlockGeneric()
+LPVOID *ClrFlsGetBlockGeneric()
{
WRAPPER_NO_CONTRACT;
STATIC_CONTRACT_SO_TOLERANT;
- return (void **) GetExecutionEngine()->TLS_GetDataBlock();
+ return (LPVOID *) GetExecutionEngine()->TLS_GetDataBlock();
}
CLRFLSGETBLOCK __ClrFlsGetBlock = ClrFlsGetBlockGeneric;