Commit 30a37b65 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

expand: Remove superfluous pointer casts.

parent cc7fc4ab
...@@ -107,7 +107,7 @@ int main(int argc, char *argv[]) ...@@ -107,7 +107,7 @@ int main(int argc, char *argv[])
case FILE_COMPRESSION_MSZIP: case FILE_COMPRESSION_MSZIP:
{ {
outfile_basename[0] = 0; 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] ); fprintf( stderr, "%s: can't determine original name\n", argv[0] );
return 1; return 1;
...@@ -142,7 +142,7 @@ int main(int argc, char *argv[]) ...@@ -142,7 +142,7 @@ int main(int argc, char *argv[])
{ {
case FILE_COMPRESSION_MSZIP: 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] ); fprintf( stderr, "%s: cabinet extraction failed\n", argv[0] );
return 1; return 1;
......
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