From 49e51d3dc95eb2fb4d0f7be26c2063729a8e6a59 Mon Sep 17 00:00:00 2001 From: jimmyngo Date: Wed, 14 Nov 2012 18:27:21 -0800 Subject: [PATCH] Update bindings/python/rrdtoolmodule.c Undoing the off by one correction as per previous email. --- bindings/python/rrdtoolmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.47.2