Browse Source

Fix ts_crc32_section return type

There's no such type u_int32_t, and the declaration uses correct uint32_t
Dmitry Marakasov 6 years ago
parent
commit
848acf5a92
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      crc.c

+ 1
- 1
crc.c View File

@@ -46,7 +46,7 @@ uint32_t ts_crc32(uint8_t *data, int data_size) {
46 46
 	return crc;
47 47
 }
48 48
 
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) {
50 50
 	return ts_crc32(section_header->section_data, section_header->section_data_len);
51 51
 }
52 52
 

Loading…
Cancel
Save