From e85d8cd7ebedd25707e3a18369fa3b8dd93434cc Mon Sep 17 00:00:00 2001 From: triton Date: Sun, 4 May 2014 20:55:59 +0100 Subject: [PATCH] Fixed CDECL to actually attribute as `cdecl` and not `stdcall`. --- tests/Tests.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Tests.h b/tests/Tests.h index f9d7e4cf..8b89ac22 100644 --- a/tests/Tests.h +++ b/tests/Tests.h @@ -7,7 +7,7 @@ #else #define DLL_API __attribute__ ((visibility ("default"))) #define STDCALL __attribute__((stdcall)) -#define CDECL __attribute__((stdcall)) +#define CDECL __attribute__((cdecl)) #endif #define CS_OUT \ No newline at end of file