Commit b625056b authored by Cyril Deguet's avatar Cyril Deguet

* fixed a very old bug preventing the whole thing from working :(

parent 90c8cdb4
......@@ -20,7 +20,7 @@ static PyObject *vlc_init(PyObject *self, PyObject *args)
char *pArgv[] = { "vlc", "--sout", NULL };
int iRc;
if (!PyArg_ParseTuple(args, "iss", &iVlc, &pArgv[2]))
if (!PyArg_ParseTuple(args, "is", &iVlc, &pArgv[2]))
return NULL;
iRc = VLC_Init(iVlc, 3, pArgv);
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