From c9fb3c64177f8efefd18a11f86bcf2f94d0f7c90 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Sat, 4 Dec 2010 11:06:25 +0000 Subject: Fix indentation in Objects/longobject.c --- Objects/longobject.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Objects/longobject.c b/Objects/longobject.c index 534e52d..4737787 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -2144,9 +2144,9 @@ PyLong_FromUnicode(Py_UNICODE *u, Py_ssize_t length, int base) /* Replace non-ASCII whitespace with ' ' */ ptr = PyUnicode_AS_UNICODE(asciidig); for (i = 0; i < length; i++) { - Py_UNICODE ch = ptr[i]; - if (ch > 127 && Py_UNICODE_ISSPACE(ch)) - ptr[i] = ' '; + Py_UNICODE ch = ptr[i]; + if (ch > 127 && Py_UNICODE_ISSPACE(ch)) + ptr[i] = ' '; } buffer = _PyUnicode_AsStringAndSize(asciidig, &buflen); if (buffer == NULL) { -- cgit v0.12