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
30a37b65
Commit
30a37b65
authored
Jan 29, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jan 29, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
expand: Remove superfluous pointer casts.
parent
cc7fc4ab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
expand.c
programs/expand/expand.c
+2
-2
No files found.
programs/expand/expand.c
View file @
30a37b65
...
...
@@ -107,7 +107,7 @@ int main(int argc, char *argv[])
case
FILE_COMPRESSION_MSZIP
:
{
outfile_basename
[
0
]
=
0
;
if
(
!
SetupIterateCabinetA
(
infile
,
0
,
set_outfile
,
(
PVOID
)
outfile_basename
))
if
(
!
SetupIterateCabinetA
(
infile
,
0
,
set_outfile
,
outfile_basename
))
{
fprintf
(
stderr
,
"%s: can't determine original name
\n
"
,
argv
[
0
]
);
return
1
;
...
...
@@ -142,7 +142,7 @@ int main(int argc, char *argv[])
{
case
FILE_COMPRESSION_MSZIP
:
{
if
(
!
SetupIterateCabinetA
(
infile
,
0
,
extract_callback
,
(
PVOID
)
outfile
))
if
(
!
SetupIterateCabinetA
(
infile
,
0
,
extract_callback
,
outfile
))
{
fprintf
(
stderr
,
"%s: cabinet extraction failed
\n
"
,
argv
[
0
]
);
return
1
;
...
...
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