From c940dae6afa628efab4875a19f8cf712f91e8aad Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Fri, 5 Jan 2007 22:05:13 +0000 Subject: [PATCH] fix return type --- lib/dvb/pmt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dvb/pmt.cpp b/lib/dvb/pmt.cpp index 1d9ca83d..33ec55c1 100644 --- a/lib/dvb/pmt.cpp +++ b/lib/dvb/pmt.cpp @@ -865,7 +865,7 @@ static PyObject *createTuple(int pid, const char *type) return r; } -static inline PyObject PyList_AppendSteal(PyObject *list, PyObject *item) +static inline void PyList_AppendSteal(PyObject *list, PyObject *item) { PyList_Append(list, item); Py_DECREF(item); -- 2.30.2