Module: wine Branch: master Commit: 6e472d8bc3563b6b0bc9ba5118a1d10a7e2bc01a URL: http://source.winehq.org/git/wine.git/?a=commit;h=6e472d8bc3563b6b0bc9ba5118...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Sun Nov 24 00:05:08 2013 +0100
kernel32: Use BOOL type where appropriate.
---
dlls/kernel32/profile.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/kernel32/profile.c b/dlls/kernel32/profile.c index 87c3cd7..a9a11b1 100644 --- a/dlls/kernel32/profile.c +++ b/dlls/kernel32/profile.c @@ -267,8 +267,8 @@ static void PROFILE_Free( PROFILESECTION *section ) } }
-/* returns 1 if a character white space else 0 */ -static inline int PROFILE_isspaceW(WCHAR c) +/* returns TRUE if a whitespace character, else FALSE */ +static inline BOOL PROFILE_isspaceW(WCHAR c) { /* ^Z (DOS EOF) is a space too (found on CD-ROMs) */ return isspaceW(c) || c == 0x1a;