Fix int type in group info display format.

shapetextures
Sven Eberhardt 2016-01-09 00:17:50 -04:00
parent e89779a8c7
commit 3f7bd627de
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ void DisplayGroup(const C4Group &grp, const char *filter = NULL)
++file_count;
byte_count += entry->Size;
}
printf("%lu Entries, %lu Bytes\n", file_count, byte_count);
printf("%lu Entries, %lu Bytes\n", (unsigned long)file_count, (unsigned long)byte_count);
}
void PrintGroupInternals(C4Group &grp, int indent_level = 0)