From d5b0232b04c70e4aa8d1e6c7fd35c65240733e84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Delanoy?= Date: Sun, 24 Nov 2013 00:05:12 +0100 Subject: [PATCH] stress.dll16: Use BOOL type where appropriate. --- dlls/stress.dll16/stress.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/dlls/stress.dll16/stress.c b/dlls/stress.dll16/stress.c index c97a1b250c1..be292d9d58a 100644 --- a/dlls/stress.dll16/stress.c +++ b/dlls/stress.dll16/stress.c @@ -54,8 +54,7 @@ INT16 WINAPI AllocFileHandles(INT16 Left) BOOL16 WINAPI AllocGDIMem(UINT16 uLeft) { TRACE("(%d) - stub\n", uLeft); - - return 1; + return TRUE; } /*********************************************************************** @@ -64,8 +63,7 @@ BOOL16 WINAPI AllocGDIMem(UINT16 uLeft) BOOL16 WINAPI AllocMem(DWORD dwLeft) { FIXME("(%d) - stub\n", dwLeft); - - return 1; + return TRUE; } /*********************************************************************** @@ -74,8 +72,7 @@ BOOL16 WINAPI AllocMem(DWORD dwLeft) BOOL16 WINAPI AllocUserMem(UINT16 uContig) { TRACE("AllocUserMem %d\n", uContig); - - return 1; + return TRUE; } /***********************************************************************