X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fbase%2Febase.cpp;h=724e9dca8dbda39d921c233e5cb74587207d7470;hp=bcfab61c0fb42a0eb51344e710a0131650de3f18;hb=c99bb3d37792fcb6c515c9b07deac1a959995baa;hpb=d0af96f7a28831d6f8c11fb224d483e6eb92b677 diff --git a/lib/base/ebase.cpp b/lib/base/ebase.cpp index bcfab61..724e9dc 100644 --- a/lib/base/ebase.cpp +++ b/lib/base/ebase.cpp @@ -439,8 +439,8 @@ eTimerPy_start(eTimerPy* self, PyObject *args) static PyObject * eTimerPy_start_long(eTimerPy* self, PyObject *args) { - long v=0; - if (!PyArg_ParseTuple(args, "l", &v)) { + int v=0; + if (!PyArg_ParseTuple(args, "i", &v)) { return NULL; } self->tm->startLongTimer(v);