From: oetiker Date: Tue, 10 May 2005 20:19:55 +0000 (+0000) Subject: second installment with warning fixes from alan X-Git-Url: https://git.octo.it/?a=commitdiff_plain;ds=sidebyside;h=2be650c460fa6d42c22755b02250148d403a5a7d;hp=e117f6452baa5a8d28156c279840a9f6d8f03d30;p=rrdtool.git second installment with warning fixes from alan git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2/program@540 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/bindings/python/rrdtoolmodule.c b/bindings/python/rrdtoolmodule.c index 3413be7..c1ff42f 100644 --- a/bindings/python/rrdtoolmodule.c +++ b/bindings/python/rrdtoolmodule.c @@ -35,7 +35,11 @@ static const char *__version__ = "$Revision: 1.14 $"; #include "rrd_extra.h" static PyObject *ErrorObject; -extern int optind, opterr; +extern int optind; +extern int opterr; + +/* forward declaration to keep compiler happy */ +void initrrdtool(void); static int create_args(char *command, PyObject *args, int *argc, char ***argv) @@ -158,7 +162,7 @@ PyRRD_fetch(PyObject *self, PyObject *args) /* Return : ((start, end, step), (name1, name2, ...), [(data1, data2, ..), ...]) */ PyObject *range_tup, *dsnam_tup, *data_list, *t; - int i, j, row; + unsigned long i, j, row; rrd_value_t dv; row = ((end - start) / step + 1); @@ -360,7 +364,7 @@ PyRRD_info(PyObject *self, PyObject *args) rrd_t rrd; FILE *in_file; char *filename; - int i, j; + unsigned long i, j; if (! PyArg_ParseTuple(args, "s:info", &filename)) return NULL; @@ -456,7 +460,7 @@ PyRRD_info(PyObject *self, PyObject *args) /* List of methods defined in the module */ #define meth(name, func, doc) {name, (PyCFunction)func, METH_VARARGS, doc} -static struct PyMethodDef _rrdtool_methods[] = { +static PyMethodDef _rrdtool_methods[] = { meth("create", PyRRD_create, PyRRD_create__doc__), meth("update", PyRRD_update, PyRRD_update__doc__), meth("fetch", PyRRD_fetch, PyRRD_fetch__doc__), @@ -465,7 +469,7 @@ static struct PyMethodDef _rrdtool_methods[] = { meth("last", PyRRD_last, PyRRD_last__doc__), meth("resize", PyRRD_resize, PyRRD_resize__doc__), meth("info", PyRRD_info, PyRRD_info__doc__), - {NULL, NULL}, + {NULL, NULL} }; #define SET_INTCONSTANT(dict, value) \