Commit 8bd2eb3e authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

cabarc: Use BOOL type where appropriate.

parent e7c5c9ae
...@@ -75,8 +75,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(cabarc); ...@@ -75,8 +75,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(cabarc);
static int opt_cabinet_size = CB_MAX_DISK; static int opt_cabinet_size = CB_MAX_DISK;
static int opt_cabinet_id; static int opt_cabinet_id;
static int opt_compression = tcompTYPE_MSZIP; static int opt_compression = tcompTYPE_MSZIP;
static int opt_recurse; static BOOL opt_recurse;
static int opt_preserve_paths; static BOOL opt_preserve_paths;
static int opt_reserve_space; static int opt_reserve_space;
static int opt_verbose; static int opt_verbose;
static char *opt_cab_file; static char *opt_cab_file;
...@@ -672,10 +672,10 @@ int wmain( int argc, WCHAR *argv[] ) ...@@ -672,10 +672,10 @@ int wmain( int argc, WCHAR *argv[] )
} }
break; break;
case 'p': case 'p':
opt_preserve_paths = 1; opt_preserve_paths = TRUE;
break; break;
case 'r': case 'r':
opt_recurse = 1; opt_recurse = TRUE;
break; break;
case 's': case 's':
argv++; argc--; argv++; argc--;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment