Replace "unsigned int" with "uint32_t"

This commit is contained in:
GravisZro
2024-05-23 22:51:16 -04:00
parent 9c039e6d2c
commit 2147cfa68b
133 changed files with 1209 additions and 1209 deletions

View File

@@ -156,7 +156,7 @@ void CZip::hb_input_counts(BITFILE *input, tH0Node *nodes) {
if ((c = VFgetc(input->file)) == EOF) {
// fatal_error( "Error reading byte counts\n" );
} else
nodes[i].count = (unsigned int)c;
nodes[i].count = (uint32_t)c;
if ((first = VFgetc(input->file)) == EOF) {
// fatal_error( "Error reading byte counts\n" );
}