Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
8bd2eb3e
Commit
8bd2eb3e
authored
Feb 19, 2014
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Feb 20, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cabarc: Use BOOL type where appropriate.
parent
e7c5c9ae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
cabarc.c
programs/cabarc/cabarc.c
+4
-4
No files found.
programs/cabarc/cabarc.c
View file @
8bd2eb3e
...
@@ -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
--
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment