Skip to content

Commit

Permalink
Fix type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
uroni committed Apr 11, 2019
1 parent b493652 commit a426483
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miniz_zip.c
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,7 @@ static mz_bool mz_zip_reader_read_central_dir(mz_zip_archive *pZip, mz_uint flag
return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED);
}

pExtra_data = buf;
pExtra_data = (mz_uint8*)buf;
}
else
{
Expand Down

0 comments on commit a426483

Please sign in to comment.