From 205642821f583c2c0b6dc1ef2f638dc27f2bf856 Mon Sep 17 00:00:00 2001 From: C-3PO Date: Sun, 21 Jul 2019 22:03:37 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Use=20correct=20data=20type=20on?= =?UTF-8?q?=2032-bit=20systems?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/inflate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/inflate.c b/src/inflate.c index 8f6d059..8f7f1fd 100644 --- a/src/inflate.c +++ b/src/inflate.c @@ -22,8 +22,8 @@ static const uint8_t* comprBufferNext; static uint8_t* uncomprBufferNext; //Buffer lengths static unsigned long uncomprBufferSize; -static size_t remainingInput; -static size_t spaceInOutput; +static unsigned long remainingInput; +static unsigned long spaceInOutput; //Internal variables used by miniz static tinfl_decompressor decompressor; static tinfl_status status;