From edcede5ea2fb2ee68bf68face5d9c9477ce1fc85 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Sat, 7 Mar 2009 15:31:11 -0800 Subject: [PATCH] another warning avoidance --- Cython/Compiler/Nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.26.2