Module: wine Branch: master Commit: f03d251ef2b19813729a1d3313268f4db599f37a URL: http://source.winehq.org/git/wine.git/?a=commit;h=f03d251ef2b19813729a1d3313...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Mon Oct 7 22:49:37 2013 +0200
riched20: Use BOOL type where appropriate.
---
dlls/riched20/editor.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/riched20/editor.c b/dlls/riched20/editor.c index 6e7ffae..4e3d978 100644 --- a/dlls/riched20/editor.c +++ b/dlls/riched20/editor.c @@ -253,7 +253,7 @@ HANDLE me_heap = NULL; static BOOL ME_ListBoxRegistered = FALSE; static BOOL ME_ComboBoxRegistered = FALSE;
-static inline int is_version_nt(void) +static inline BOOL is_version_nt(void) { return !(GetVersion() & 0x80000000); }