fix a name clash with newer zlib
authornotaz <notasas@gmail.com>
Thu, 3 Aug 2017 21:36:13 +0000 (00:36 +0300)
committernotaz <notasas@gmail.com>
Thu, 3 Aug 2017 21:36:13 +0000 (00:36 +0300)
pico/cart.c

index d091d62..1ce8059 100644 (file)
@@ -49,7 +49,7 @@ typedef struct _cso_struct
 }\r
 cso_struct;\r
 \r
-static int uncompress2(void *dest, int destLen, void *source, int sourceLen)\r
+static int uncompress_buf(void *dest, int destLen, void *source, int sourceLen)\r
 {\r
     z_stream stream;\r
     int err;\r
@@ -326,7 +326,7 @@ size_t pm_read(void *ptr, size_t bytes, pm_file *stream)
           }\r
           cso->block_in_buff = block;\r
         }\r
-        rret = uncompress2(tmp_dst, 2048, cso->in_buff, read_len);\r
+        rret = uncompress_buf(tmp_dst, 2048, cso->in_buff, read_len);\r
         if (rret != 0) {\r
           elprintf(EL_STATUS, "cso: uncompress failed @ %08x with %i", read_pos, rret);\r
           break;\r