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
a24081a7
Commit
a24081a7
authored
Nov 01, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Nov 01, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msiexec: Use BOOL type where appropriate.
parent
abd0c343
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
msiexec.c
programs/msiexec/msiexec.c
+6
-5
No files found.
programs/msiexec/msiexec.c
View file @
a24081a7
...
...
@@ -422,11 +422,12 @@ static int chomp( WCHAR *str )
{
enum
chomp_state
state
=
cs_token
;
WCHAR
*
p
,
*
out
;
int
count
=
1
,
ignore
;
int
count
=
1
;
BOOL
ignore
;
for
(
p
=
str
,
out
=
str
;
*
p
;
p
++
)
{
ignore
=
1
;
ignore
=
TRUE
;
switch
(
state
)
{
case
cs_whitespace
:
...
...
@@ -440,7 +441,7 @@ static int chomp( WCHAR *str )
break
;
default:
count
++
;
ignore
=
0
;
ignore
=
FALSE
;
state
=
cs_token
;
}
break
;
...
...
@@ -456,7 +457,7 @@ static int chomp( WCHAR *str )
*
out
++
=
0
;
break
;
default:
ignore
=
0
;
ignore
=
FALSE
;
}
break
;
...
...
@@ -467,7 +468,7 @@ static int chomp( WCHAR *str )
state
=
cs_token
;
break
;
default:
ignore
=
0
;
ignore
=
FALSE
;
}
break
;
}
...
...
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