👷 Fix compiler error

This commit is contained in:
C-3PO 2018-07-31 14:01:33 +02:00
parent 2ade3e0bd0
commit 04e8f80b20
Signed by: c3po
GPG key ID: 62993C4BB4D86F24
2 changed files with 5 additions and 5 deletions

View file

@ -14,10 +14,10 @@
#include "inflate.h"
//The compressed and uncompressed buffer arrays
char* comprBuffer;
const char* comprBuffer;
char* uncomprBuffer;
//Position of the inflater in the buffer arrays
char* comprBufferNext;
const char* comprBufferNext;
char* uncomprBufferNext;
//Buffer lengths
unsigned long uncomprBufferSize;