Browse Source

Merge pull request #3 from AMDmi3/patch-1

Fix ts_crc32_section return type
Georgi Chorbadzhiyski 5 years ago
parent
commit
56f4728df7
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