kernel32: Use BOOL type where appropriate

Frédéric Delanoy frederic.delanoy at gmail.com
Sat Nov 23 17:05:08 CST 2013


---
 dlls/kernel32/profile.c | 4 ++--
 1 file 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;
-- 
1.8.4.4




More information about the wine-patches mailing list