Alexandre Julliard : msvcrtd/tests: Fix calling convention for operator_new_dbg.
Module: wine Branch: master Commit: cbaf176013826169cfa4884a8d66050703591b3d URL: http://source.winehq.org/git/wine.git/?a=commit;h=cbaf176013826169cfa4884a8d... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Tue Jun 16 13:29:38 2009 +0200 msvcrtd/tests: Fix calling convention for operator_new_dbg. --- dlls/msvcrtd/tests/debug.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/msvcrtd/tests/debug.c b/dlls/msvcrtd/tests/debug.c index a7f7db1..71f6e4c 100644 --- a/dlls/msvcrtd/tests/debug.c +++ b/dlls/msvcrtd/tests/debug.c @@ -30,7 +30,7 @@ /**********************************************************************/ -static void * (*pMSVCRTD_operator_new_dbg)(size_t, int, const char *, int) = NULL; +static void * (__cdecl *pMSVCRTD_operator_new_dbg)(size_t, int, const char *, int) = NULL; /* Some exports are only available in later versions */ #define SETNOFAIL(x,y) x = (void*)GetProcAddress(hModule,y)
participants (1)
-
Alexandre Julliard