From 0ce065c5f28f840f02c9621a45bb9e3daed87e1e 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 #9977 (#10087) --- src/vm/gdbjithelpers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vm/gdbjithelpers.h b/src/vm/gdbjithelpers.h index 5308784..199edaa0 100644 --- a/src/vm/gdbjithelpers.h +++ b/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