diff options
Diffstat (limited to 'Include/cStringIO.h')
-rw-r--r-- | Include/cStringIO.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/cStringIO.h b/Include/cStringIO.h index 66e1edb..290a103 100644 --- a/Include/cStringIO.h +++ b/Include/cStringIO.h @@ -38,7 +38,7 @@ static struct PycStringIO_CAPI { int(*creadline)(PyObject *, char **); /* Write a string to an output object*/ - int(*cwrite)(PyObject *, char *, int); + int(*cwrite)(PyObject *, const char *, int); /* Get the output object as a Python string (returns new reference). */ PyObject *(*cgetvalue)(PyObject *); |