Module: wine Branch: master Commit: d5b0232b04c70e4aa8d1e6c7fd35c65240733e84 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d5b0232b04c70e4aa8d1e6c7fd...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Sun Nov 24 00:05:12 2013 +0100
stress.dll16: Use BOOL type where appropriate.
---
dlls/stress.dll16/stress.c | 9 +++------ 1 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/dlls/stress.dll16/stress.c b/dlls/stress.dll16/stress.c index c97a1b2..be292d9 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; }
/***********************************************************************