From 1eb30ce4b33f506fa854581a67a7c172e9bdeba1 Mon Sep 17 00:00:00 2001 From: Michael Droettboom Date: Tue, 2 Oct 2018 16:12:24 -0400 Subject: [PATCH] LINT --- src/python2js.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python2js.c b/src/python2js.c index efea44683..633f99c8a 100644 --- a/src/python2js.c +++ b/src/python2js.c @@ -135,7 +135,7 @@ _python2js(PyObject* x, PyObject* map) // when the Python int gets too large. This will lose precision, // but is less problematic than truncation. if ((unsigned long)x_long > 0x7fffffff) { - PyObject *py_float = PyNumber_Float(x); + PyObject* py_float = PyNumber_Float(x); if (py_float == NULL) { return HW_ERROR; }