From: Robert Bradshaw Date: Sat, 7 Mar 2009 23:31:11 +0000 (-0800) Subject: another warning avoidance X-Git-Tag: 0.11.rc~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=edcede5ea2fb2ee68bf68face5d9c9477ce1fc85;p=cython.git another warning avoidance --- diff --git a/Cython/Compiler/Nodes.py b/Cython/Compiler/Nodes.py index f88c8b0e..c174cb83 100644 --- a/Cython/Compiler/Nodes.py +++ b/Cython/Compiler/Nodes.py @@ -4915,7 +4915,7 @@ static int __Pyx_PrintOne(PyObject *o) { return 0; /* the line below is just to avoid compiler * compiler warnings about unused functions */ - __Pyx_Print(NULL, 0); + return __Pyx_Print(NULL, 0); } #else /* Python 3 has a print function */