From: Andreas Monzner Date: Mon, 27 Oct 2008 14:49:31 +0000 (+0000) Subject: long -> int X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=c99bb3d37792fcb6c515c9b07deac1a959995baa long -> int --- 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);