Fix indentation in Objects/longobject.c
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 @@
     /* 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) {