From 0b635cb2d554d0384d52c0549877c0f30346a087 Mon Sep 17 00:00:00 2001 From: Vitor Santos Costa Date: Mon, 22 Aug 2016 00:35:26 -0500 Subject: [PATCH] fix compilation --- packages/python/pybips.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/python/pybips.c b/packages/python/pybips.c index bf003579e..cd985900d 100644 --- a/packages/python/pybips.c +++ b/packages/python/pybips.c @@ -674,7 +674,9 @@ if (PyDict_Contains(py_F2P, key)) { } o = PyStructSequence_New(typp); term_t tleft = PL_new_term_ref(); - for (int i = 0; i < arity; i++) { + int i; + + for (i = 0; i < arity; i++) { PyObject *pArg; if (!PL_get_arg(i + 1, t, tleft)) return NULL;