diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2007-01-05 22:05:13 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2007-01-05 22:05:13 +0000 |
| commit | c940dae6afa628efab4875a19f8cf712f91e8aad (patch) | |
| tree | cf2b56800ebc0d4ca3eaf3afe934b18f3092b1e8 | |
| parent | f2e5d9edd75744f7a62135ad4e032fda84fdb2a0 (diff) | |
| download | enigma2-c940dae6afa628efab4875a19f8cf712f91e8aad.tar.gz enigma2-c940dae6afa628efab4875a19f8cf712f91e8aad.zip | |
fix return type
| -rw-r--r-- | lib/dvb/pmt.cpp | 2 |
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); |
