Make input const

This commit is contained in:
eustas 2016-01-23 00:31:47 +01:00
parent a22993b312
commit fec00d24e1

View File

@ -167,7 +167,7 @@ PyDoc_STRVAR(decompress__doc__,
static PyObject* brotli_decompress(PyObject *self, PyObject *args) {
PyObject *ret = NULL;
uint8_t *input;
const uint8_t *input;
size_t length;
int ok;