Commit b33174e7 authored by Lisandro Dalcin's avatar Lisandro Dalcin

add missing const for char* arg in refnanny call

parent 85d7fe69
...@@ -2338,7 +2338,7 @@ typedef struct { ...@@ -2338,7 +2338,7 @@ typedef struct {
void (*DECREF)(void*, PyObject*, int); void (*DECREF)(void*, PyObject*, int);
void (*GOTREF)(void*, PyObject*, int); void (*GOTREF)(void*, PyObject*, int);
void (*GIVEREF)(void*, PyObject*, int); void (*GIVEREF)(void*, PyObject*, int);
void* (*NewContext)(const char*, int, char*); void* (*NewContext)(const char*, int, const char*);
int (*FinishContext)(void**); int (*FinishContext)(void**);
} __Pyx_RefnannyAPIStruct; } __Pyx_RefnannyAPIStruct;
static __Pyx_RefnannyAPIStruct *__Pyx_Refnanny = NULL; static __Pyx_RefnannyAPIStruct *__Pyx_Refnanny = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment