diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-10-27 14:49:31 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-10-27 14:49:31 +0000 |
| commit | c99bb3d37792fcb6c515c9b07deac1a959995baa (patch) | |
| tree | 52011d7f6c6cbc039532fbca6bfb4d578e2a8060 /lib/base/ebase.cpp | |
| parent | d0af96f7a28831d6f8c11fb224d483e6eb92b677 (diff) | |
| download | enigma2-c99bb3d37792fcb6c515c9b07deac1a959995baa.tar.gz enigma2-c99bb3d37792fcb6c515c9b07deac1a959995baa.zip | |
long -> int
Diffstat (limited to 'lib/base/ebase.cpp')
| -rw-r--r-- | lib/base/ebase.cpp | 4 |
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); |
