From: Andreas Monzner Date: Mon, 27 Oct 2008 14:49:31 +0000 (+0000) Subject: long -> int X-Git-Tag: 2.6.0~694 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/c99bb3d37792fcb6c515c9b07deac1a959995baa?ds=inline long -> int --- diff --git a/lib/base/ebase.cpp b/lib/base/ebase.cpp index bcfab61c..724e9dca 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);