]> git.sesse.net Git - vlc/commitdiff
* VLC_AddTarget had a new prototype
authorCyril Deguet <asmax@videolan.org>
Tue, 5 Aug 2003 08:02:28 +0000 (08:02 +0000)
committerCyril Deguet <asmax@videolan.org>
Tue, 5 Aug 2003 08:02:28 +0000 (08:02 +0000)
python/vlcmodule.c

index 8f322188983bd9c0e4bef65b5e5254d9bcec6862..6ea4605ce2ca277a2d7ce1e2a57b579a23faba66 100644 (file)
@@ -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);
 }