Commit 36fb323a authored by Lisandro Dalcin's avatar Lisandro Dalcin

Fix warning when __Pyx_Print is not used

parent d485d418
...@@ -4914,6 +4914,9 @@ static int __Pyx_PrintOne(PyObject *o) { ...@@ -4914,6 +4914,9 @@ static int __Pyx_PrintOne(PyObject *o) {
if (PyFile_WriteString("\n", f) < 0) if (PyFile_WriteString("\n", f) < 0)
return -1; return -1;
return 0; return 0;
/* the line below is just to avoid compiler
* compiler warnings about unused functions */
__Pyx_Print(NULL, 0);
} }
#else /* Python 3 has a print function */ #else /* Python 3 has a print function */
......
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