aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2007-01-05 22:05:13 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2007-01-05 22:05:13 +0000
commitc940dae6afa628efab4875a19f8cf712f91e8aad (patch)
treecf2b56800ebc0d4ca3eaf3afe934b18f3092b1e8
parentf2e5d9edd75744f7a62135ad4e032fda84fdb2a0 (diff)
downloadenigma2-c940dae6afa628efab4875a19f8cf712f91e8aad.tar.gz
enigma2-c940dae6afa628efab4875a19f8cf712f91e8aad.zip
fix return type
-rw-r--r--lib/dvb/pmt.cpp2
1 files changed, 1 insertions, 1 deletions
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);