From: jimmyngo Date: Thu, 15 Nov 2012 02:27:21 +0000 (-0800) Subject: Update bindings/python/rrdtoolmodule.c X-Git-Tag: v1.5.0-rc1~201^2^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F358%2Fhead;p=thirdparty%2Frrdtool-1.x.git Update bindings/python/rrdtoolmodule.c Undoing the off by one correction as per previous email. --- diff --git a/bindings/python/rrdtoolmodule.c b/bindings/python/rrdtoolmodule.c index aea40f17..54855e6b 100644 --- a/bindings/python/rrdtoolmodule.c +++ b/bindings/python/rrdtoolmodule.c @@ -618,7 +618,7 @@ static PyObject *PyRRD_xport( unsigned long i, j; rrd_value_t dv; - unsigned long row_cnt = ((end - start) / step) + 1; + unsigned long row_cnt = ((end - start) / step); r = PyDict_New(); meta_dict = PyDict_New();