Fix warning
This commit is contained in:
parent
e037cce4ca
commit
0e4f2e144f
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ void main(int argc, char** argv)
|
||||||
{
|
{
|
||||||
printf("BLOC %d:\n", k);
|
printf("BLOC %d:\n", k);
|
||||||
|
|
||||||
LFH* lfh = &zip.start[zip.lfh_off[k]];
|
LFH* lfh = (LFH*) (zip.start + zip.lfh_off[k]);
|
||||||
|
|
||||||
unsigned int uncompressed_size = lfh->uncompressed_size;
|
unsigned int uncompressed_size = lfh->uncompressed_size;
|
||||||
printf("UNCOMPRESSED SIZE: 0x%x\n", uncompressed_size);
|
printf("UNCOMPRESSED SIZE: 0x%x\n", uncompressed_size);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue