From: Mark Dickinson Date: Sat, 4 Dec 2010 11:06:25 +0000 (+0000) Subject: Fix indentation in Objects/longobject.c X-Git-Tag: v3.2b1~56 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c9fb3c64177f8efefd18a11f86bcf2f94d0f7c90;p=thirdparty%2FPython%2Fcpython.git Fix indentation in Objects/longobject.c --- diff --git a/Objects/longobject.c b/Objects/longobject.c index 534e52dfd383..4737787b878e 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) {