Avoid unused variables when SIZEOF_SIZE_T == SIZEOF_LONG. Also normalize
whitespace.
diff --git a/Objects/intobject.c b/Objects/intobject.c
index d1b9599..232b2d2 100644
--- a/Objects/intobject.c
+++ b/Objects/intobject.c
@@ -188,12 +188,14 @@
 Py_ssize_t
 PyInt_AsSsize_t(register PyObject *op)
 {
+#if SIZEOF_SIZE_T != SIZEOF_LONG
 	PyNumberMethods *nb;
 	PyIntObject *io;
 	Py_ssize_t val;
+#endif
 	if (op && !PyInt_CheckExact(op) && PyLong_Check(op))
 		return _PyLong_AsSsize_t(op);
-#if SIZEOF_SIZE_T==SIZEOF_LONG
+#if SIZEOF_SIZE_T == SIZEOF_LONG
 	return PyInt_AsLong(op);
 #else