Module: wine Branch: master Commit: d12c0d67ae652023b0f8fe1889c0612c2e6fc79f URL: http://source.winehq.org/git/wine.git/?a=commit;h=d12c0d67ae652023b0f8fe1889...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Thu Oct 10 21:52:45 2013 +0200
comctl32: Use BOOL type where appropriate.
---
dlls/comctl32/commctrl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/comctl32/commctrl.c b/dlls/comctl32/commctrl.c index f08288d..d2ad28f 100644 --- a/dlls/comctl32/commctrl.c +++ b/dlls/comctl32/commctrl.c @@ -1541,7 +1541,7 @@ BOOL WINAPI MirrorIcon(HICON *phicon1, HICON *phicon2) return FALSE; }
-static inline int IsDelimiter(WCHAR c) +static inline BOOL IsDelimiter(WCHAR c) { switch(c) {