diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-08-17 14:47:30 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-08-17 14:47:30 +0300 |
commit | 49dd532180282f24ad31daf7f4f661722d4f9b16 (patch) | |
tree | 429fcc5fc4a0df598a1e6cf26aa0a15ad458b18f /extmod/uzlib/adler32.c | |
parent | 64c5a9435c3b100fdc50daafebf8550ab5f40780 (diff) | |
download | micropython-49dd532180282f24ad31daf7f4f661722d4f9b16.tar.gz micropython-49dd532180282f24ad31daf7f4f661722d4f9b16.zip |
extmod/uzlib/: Update uzlib to v2.0.2.
Consistently use stdint types. Fixes stmhal build.
Diffstat (limited to 'extmod/uzlib/adler32.c')
-rw-r--r-- | extmod/uzlib/adler32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/uzlib/adler32.c b/extmod/uzlib/adler32.c index b06a7b37cc..1f1759493b 100644 --- a/extmod/uzlib/adler32.c +++ b/extmod/uzlib/adler32.c @@ -41,7 +41,7 @@ #define A32_BASE 65521 #define A32_NMAX 5552 -unsigned int uzlib_adler32(const void *data, unsigned int length, unsigned int prev_sum /* 1 */) +uint32_t uzlib_adler32(const void *data, unsigned int length, uint32_t prev_sum /* 1 */) { const unsigned char *buf = (const unsigned char *)data; |