From b1410fb4337fcf849c6d1ec76a7fb1e2c12c2508 Mon Sep 17 00:00:00 2001 From: Thomas Wouters Date: Wed, 15 Feb 2006 23:08:56 +0000 Subject: [PATCH] Avoid unused variables when SIZEOF_SIZE_T == SIZEOF_LONG. Also normalize whitespace. --- Objects/intobject.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Objects/intobject.c b/Objects/intobject.c index d1b9599622..232b2d234a 100644 --- a/Objects/intobject.c +++ b/Objects/intobject.c @@ -188,12 +188,14 @@ PyInt_AsLong(register PyObject *op) 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 -- 2.50.1