File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 41
41
#define A32_BASE 65521
42
42
#define A32_NMAX 5552
43
43
44
- unsigned int uzlib_adler32 (const void * data , unsigned int length , unsigned int prev_sum /* 1 */ )
44
+ uint32_t uzlib_adler32 (const void * data , unsigned int length , uint32_t prev_sum /* 1 */ )
45
45
{
46
46
const unsigned char * buf = (const unsigned char * )data ;
47
47
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ static const unsigned int tinf_crc32tab[16] = {
46
46
};
47
47
48
48
/* crc is previous value for incremental computation, 0xffffffff initially */
49
- unsigned int uzlib_crc32 (const void * data , unsigned int length , unsigned int crc )
49
+ uint32_t uzlib_crc32 (const void * data , unsigned int length , uint32_t crc )
50
50
{
51
51
const unsigned char * buf = (const unsigned char * )data ;
52
52
unsigned int i ;
You can’t perform that action at this time.
0 commit comments