Make the indentation consistently use tabs instead of using spaces just
in one place.
diff --git a/Objects/fileobject.c b/Objects/fileobject.c
index 96d3830..ea8fe9d 100644
--- a/Objects/fileobject.c
+++ b/Objects/fileobject.c
@@ -660,9 +660,9 @@
 		n1 = getline(&buf, &size, fp);
 		Py_END_ALLOW_THREADS
 		if (n1 == -1) {
-                        if (buf){
-                                free(buf);
-                        }
+			if (buf){
+				free(buf);
+			}
 			clearerr(fp);
 			if (PyErr_CheckSignals()) {
 				return NULL;