Fix warning

This commit is contained in:
atxr 2024-02-27 17:02:36 +01:00
parent e037cce4ca
commit 0e4f2e144f

View file

@ -33,7 +33,7 @@ void main(int argc, char** argv)
{
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;
printf("UNCOMPRESSED SIZE: 0x%x\n", uncompressed_size);