Skip to content

Commit 848acf5

Browse files
authored
Fix ts_crc32_section return type
There's no such type u_int32_t, and the declaration uses correct uint32_t
1 parent d3b56ef commit 848acf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ uint32_t ts_crc32(uint8_t *data, int data_size) {
4646
return crc;
4747
}
4848

49-
u_int32_t ts_crc32_section(struct ts_section_header *section_header) {
49+
uint32_t ts_crc32_section(struct ts_section_header *section_header) {
5050
return ts_crc32(section_header->section_data, section_header->section_data_len);
5151
}
5252

0 commit comments

Comments
 (0)