Commit 11ddb830 authored by Stefan Behnel's avatar Stefan Behnel

fix C compiler warning about unused variable in test code

parent 6cf33847
......@@ -21,5 +21,5 @@ extern DL_EXPORT(void) g2(PyObject*);
}
#endif
PyObject *g(PyObject* o) {return 0;}
void g2(PyObject* o) {return;}
PyObject *g(PyObject* o) {if (o) {}; return 0;}
void g2(PyObject* o) {if (o) {}; return;}
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