eject: Use BOOL type where appropriate

Frédéric Delanoy frederic.delanoy at gmail.com
Thu Oct 31 18:21:22 CDT 2013


---
 programs/eject/eject.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/programs/eject/eject.c b/programs/eject/eject.c
index 02ff4ba..483ac21 100644
--- a/programs/eject/eject.c
+++ b/programs/eject/eject.c
@@ -33,8 +33,8 @@
 WINE_DEFAULT_DEBUG_CHANNEL(eject);
 
 /* options */
-static int unmount_only;
-static int eject_all;
+static BOOL unmount_only;
+static BOOL eject_all;
 
 /* wrapper for GetDriveTypeW */
 static DWORD get_drive_type( WCHAR drive )
@@ -134,8 +134,8 @@ static void parse_options( int *argc, char *argv[] )
         }
         for (opt = argv[i] + 1; *opt; opt++) switch(*opt)
         {
-        case 'a': eject_all = 1; break;
-        case 'u': unmount_only = 1; break;
+        case 'a': eject_all = TRUE; break;
+        case 'u': unmount_only = TRUE; break;
         case 'h': usage(); break;
         default:
             WINE_MESSAGE( "Unknown option -%c\n", *opt );
-- 
1.8.4.2




More information about the wine-patches mailing list