From ad949800e42b25e498d58ff73e656df4c0bc2c6d Mon Sep 17 00:00:00 2001 From: notaz Date: Fri, 4 Aug 2017 00:36:13 +0300 Subject: [PATCH] fix a name clash with newer zlib --- pico/cart.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pico/cart.c b/pico/cart.c index d091d62..1ce8059 100644 --- a/pico/cart.c +++ b/pico/cart.c @@ -49,7 +49,7 @@ typedef struct _cso_struct } cso_struct; -static int uncompress2(void *dest, int destLen, void *source, int sourceLen) +static int uncompress_buf(void *dest, int destLen, void *source, int sourceLen) { z_stream stream; int err; @@ -326,7 +326,7 @@ size_t pm_read(void *ptr, size_t bytes, pm_file *stream) } cso->block_in_buff = block; } - rret = uncompress2(tmp_dst, 2048, cso->in_buff, read_len); + rret = uncompress_buf(tmp_dst, 2048, cso->in_buff, read_len); if (rret != 0) { elprintf(EL_STATUS, "cso: uncompress failed @ %08x with %i", read_pos, rret); break; -- 2.39.2