From 7bd92c2443df9a333c974e82afe7d506f41b3e68 Mon Sep 17 00:00:00 2001 From: Evgeny Pavlov Date: Fri, 10 Mar 2017 20:58:35 +0300 Subject: [PATCH] [x86/Linux][GDB-JIT] Fix crash after changing default calling convention in PR dotnet/coreclr#9977 (dotnet/coreclr#10087) Commit migrated from https://github.com/dotnet/coreclr/commit/0ce065c5f28f840f02c9621a45bb9e3daed87e1e --- src/coreclr/src/vm/gdbjithelpers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coreclr/src/vm/gdbjithelpers.h b/src/coreclr/src/vm/gdbjithelpers.h index 5308784..199edaa0 100644 --- a/src/coreclr/src/vm/gdbjithelpers.h +++ b/src/coreclr/src/vm/gdbjithelpers.h @@ -27,7 +27,7 @@ struct MethodDebugInfo int localsSize; }; -typedef BOOL (STDCALL *GetInfoForMethodDelegate)(const char*, unsigned int, MethodDebugInfo& methodDebugInfo); +typedef BOOL (CALLBACK *GetInfoForMethodDelegate)(const char*, unsigned int, MethodDebugInfo& methodDebugInfo); extern GetInfoForMethodDelegate getInfoForMethodDelegate; #endif // !__GDBJITHELPERS_H__ -- 2.7.4