=?UTF-8?Q?Fr=C3=A9d=C3=A9ric=20Delanoy=20?=: msvcrtd: Use BOOL type where appropriate.

Alexandre Julliard julliard at winehq.org
Tue Feb 11 13:32:39 CST 2014


Module: wine
Branch: master
Commit: 5e52a29b53e3ab074dc2565750d666e65a7420ad
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=5e52a29b53e3ab074dc2565750d666e65a7420ad

Author: Frédéric Delanoy <frederic.delanoy at gmail.com>
Date:   Mon Feb 10 23:33:09 2014 +0100

msvcrtd: Use BOOL type where appropriate.

---

 dlls/msvcrtd/tests/debug.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/msvcrtd/tests/debug.c b/dlls/msvcrtd/tests/debug.c
index f73fef1..9055db1 100644
--- a/dlls/msvcrtd/tests/debug.c
+++ b/dlls/msvcrtd/tests/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");
 




More information about the wine-cvs mailing list