We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a0aa14 commit f753317Copy full SHA for f753317
src/cstring.c
@@ -21,7 +21,7 @@ static PyObject *_cstring_new(PyTypeObject *type, const char *value, size_t len)
21
22
#define CSTRING_NEW_EMPTY(tp) (_cstring_new(tp, "", 0))
23
24
-static PyObject *cstring_new(PyTypeObject *type, PyObject *args, PyObject **kwargs) {
+static PyObject *cstring_new(PyTypeObject *type, PyObject *args, PyObject *kwargs) {
25
char *value = NULL;
26
if(!PyArg_ParseTuple(args, "s", &value))
27
return NULL;
0 commit comments