From 1d642fc5fa4a8b8a6d41bdb51914ee8efe1859ab Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Wed, 25 Nov 2015 14:30:06 +0000 Subject: [PATCH] [MSVCRTD_WINETEST] Sync with Wine Staging 1.7.55. CORE-10536 svn path=/trunk/; revision=70114 --- rostests/winetests/msvcrtd/debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rostests/winetests/msvcrtd/debug.c b/rostests/winetests/msvcrtd/debug.c index f73fef1751b..9055db13828 100644 --- a/rostests/winetests/msvcrtd/debug.c +++ b/rostests/winetests/msvcrtd/debug.c @@ -36,7 +36,7 @@ static void * (__cdecl *pMSVCRTD_operator_new_dbg)(size_t, int, const char *, in #define SETNOFAIL(x,y) x = (void*)GetProcAddress(hModule,y) #define SET(x,y) do { SETNOFAIL(x,y); ok(x != NULL, "Export '%s' not found\n", y); } while(0) -static int init_functions(void) +static BOOL init_functions(void) { HMODULE hModule = LoadLibraryA("msvcrtd.dll");