aboutsummaryrefslogtreecommitdiff
path: root/lib/base/ebase.cpp
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-10-27 14:49:31 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-10-27 14:49:31 +0000
commitc99bb3d37792fcb6c515c9b07deac1a959995baa (patch)
tree52011d7f6c6cbc039532fbca6bfb4d578e2a8060 /lib/base/ebase.cpp
parentd0af96f7a28831d6f8c11fb224d483e6eb92b677 (diff)
downloadenigma2-c99bb3d37792fcb6c515c9b07deac1a959995baa.tar.gz
enigma2-c99bb3d37792fcb6c515c9b07deac1a959995baa.zip
long -> int
Diffstat (limited to 'lib/base/ebase.cpp')
-rw-r--r--lib/base/ebase.cpp4
1 files changed, 2 insertions, 2 deletions
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);