=?UTF-8?Q?Fr=C3=A9d=C3=A9ric=20Delanoy=20?=: winecfg: Use BOOL type where appropriate.

Alexandre Julliard julliard at winehq.org
Fri Sep 20 14:21:30 CDT 2013


Module: wine
Branch: master
Commit: e0bb0adee592f56d29af0f519d424d7b862a35f5
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=e0bb0adee592f56d29af0f519d424d7b862a35f5

Author: Frédéric Delanoy <frederic.delanoy at gmail.com>
Date:   Thu Sep 19 09:59:44 2013 +0200

winecfg: Use BOOL type where appropriate.

---

 programs/winecfg/libraries.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/programs/winecfg/libraries.c b/programs/winecfg/libraries.c
index 3b50203..660737b 100644
--- a/programs/winecfg/libraries.c
+++ b/programs/winecfg/libraries.c
@@ -198,7 +198,7 @@ static int compare_dll( const void *ptr1, const void *ptr2 )
 }
 
 /* check if dll is recommended as builtin only */
-static inline int is_builtin_only( const char *name )
+static inline BOOL is_builtin_only( const char *name )
 {
     const char *ext = strrchr( name, '.' );
 
@@ -214,7 +214,7 @@ static inline int is_builtin_only( const char *name )
 }
 
 /* check if dll should be offered in the drop-down list */
-static int show_dll_in_list( const char *name )
+static BOOL show_dll_in_list( const char *name )
 {
     const char *ext = strrchr( name, '.' );
 




More information about the wine-cvs mailing list