long -> int
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>
Mon, 27 Oct 2008 14:49:31 +0000 (14:49 +0000)
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>
Mon, 27 Oct 2008 14:49:31 +0000 (14:49 +0000)
lib/base/ebase.cpp

index bcfab61c0fb42a0eb51344e710a0131650de3f18..724e9dca8dbda39d921c233e5cb74587207d7470 100644 (file)
@@ -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);