*.[ch]: Some preparatory reformatting for the Python 3 porting.
[pyke] / pyke-mLib.c
index a29f34c..fd6f895 100644 (file)
@@ -53,7 +53,8 @@ PyObject *getk64(kludge64 u)
   if ((j = PyLong_FromUnsignedLong(LO64(u))) == 0) goto end;
   if ((t = PyNumber_InPlaceOr(i, j)) == 0) goto end;
   Py_DECREF(i); i = t;
-  if ((rc = PyNumber_Int(i)) == 0) goto end;
+  if ((t = PyNumber_Int(i)) == 0) goto end;
+  rc = t;
 end:
   Py_XDECREF(i);
   Py_XDECREF(j);