X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=bindings%2Fpython%2Frrdtoolmodule.c;h=b3caf192871881dc8d437e2a4cda207c7cb5cfe1;hb=8d278938aef5adefa2915dd446abc028cc764550;hp=4d3a0d57e031d23f2af1d58eb69f0424e26114a8;hpb=46d2e915a9f864304ee107f9ea35a60b01d3e378;p=rrdtool.git diff --git a/bindings/python/rrdtoolmodule.c b/bindings/python/rrdtoolmodule.c index 4d3a0d5..b3caf19 100644 --- a/bindings/python/rrdtoolmodule.c +++ b/bindings/python/rrdtoolmodule.c @@ -404,7 +404,7 @@ static PyObject *PyRRD_resize( } static PyObject *PyDict_FromInfo( - info_t *data) + rrd_info_t *data) { PyObject *r; @@ -451,7 +451,7 @@ static PyObject *PyRRD_info( PyObject *r; int argc; char **argv; - info_t *data; + rrd_info_t *data; if (create_args("info", args, &argc, &argv) < 0) return NULL; @@ -462,7 +462,7 @@ static PyObject *PyRRD_info( return NULL; } r = PyDict_FromInfo(data); - info_free(data); + rrd_info_free(data); return r; } @@ -476,7 +476,7 @@ static PyObject *PyRRD_graphv( PyObject *r; int argc; char **argv; - info_t *data; + rrd_info_t *data; if (create_args("graphv", args, &argc, &argv) < 0) return NULL; @@ -487,7 +487,7 @@ static PyObject *PyRRD_graphv( return NULL; } r = PyDict_FromInfo(data); - info_free(data); + rrd_info_free(data); return r; } @@ -501,7 +501,7 @@ static PyObject *PyRRD_updatev( PyObject *r; int argc; char **argv; - info_t *data; + rrd_info_t *data; if (create_args("updatev", args, &argc, &argv) < 0) return NULL; @@ -512,7 +512,7 @@ static PyObject *PyRRD_updatev( return NULL; } r = PyDict_FromInfo(data); - info_free(data); + rrd_info_free(data); return r; }