Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
101e7d3e
Commit
101e7d3e
authored
Oct 11, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Oct 14, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winepath: Use BOOL type where appropriate.
parent
3e5fecc6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
winepath.c
programs/winepath/winepath.c
+2
-2
No files found.
programs/winepath/winepath.c
View file @
101e7d3e
...
...
@@ -105,7 +105,7 @@ static int parse_options(WCHAR *argv[])
static
const
WCHAR
nullW
[]
=
{
0
};
static
const
WCHAR
*
longopts
[]
=
{
longW
,
shortW
,
unixW
,
windowsW
,
helpW
,
versionW
,
nullW
};
int
outputformats
=
0
;
int
done
=
0
;
BOOL
done
=
FALSE
;
int
i
,
j
;
for
(
i
=
1
;
argv
[
i
]
&&
!
done
;
)
...
...
@@ -119,7 +119,7 @@ static int parse_options(WCHAR *argv[])
if
(
argv
[
i
][
1
]
==
'-'
)
{
if
(
argv
[
i
][
2
]
==
0
)
{
/* '--' end of options */
done
=
1
;
done
=
TRUE
;
}
else
{
/* long option */
for
(
j
=
0
;
longopts
[
j
][
0
];
j
++
)
...
...
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