From c99bb3d37792fcb6c515c9b07deac1a959995baa Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Mon, 27 Oct 2008 14:49:31 +0000 Subject: [PATCH] long -> int --- lib/base/ebase.cpp | 4 ++-- 1 file 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); -- 2.30.2