Commit 712d1a84 authored by Cyril Deguet's avatar Cyril Deguet

* VLC_AddTarget had a new prototype

parent eb1818ef
......@@ -35,7 +35,7 @@ static PyObject *vlc_addTarget(PyObject *self, PyObject *args)
if (!PyArg_ParseTuple(args, "is", &iVlc, &file))
return NULL;
iRc = VLC_AddTarget(iVlc, file, PLAYLIST_APPEND, PLAYLIST_END);
iRc = VLC_AddTarget(iVlc, file, 0, 0, PLAYLIST_APPEND, PLAYLIST_END);
return Py_BuildValue("i", iRc);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment