mirror of
https://github.com/google/brotli.git
synced 2024-11-25 21:10:05 +00:00
Make input const
This commit is contained in:
parent
a22993b312
commit
fec00d24e1
@ -167,7 +167,7 @@ PyDoc_STRVAR(decompress__doc__,
|
|||||||
|
|
||||||
static PyObject* brotli_decompress(PyObject *self, PyObject *args) {
|
static PyObject* brotli_decompress(PyObject *self, PyObject *args) {
|
||||||
PyObject *ret = NULL;
|
PyObject *ret = NULL;
|
||||||
uint8_t *input;
|
const uint8_t *input;
|
||||||
size_t length;
|
size_t length;
|
||||||
int ok;
|
int ok;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user