]> granicus.if.org Git - python/commitdiff
Make the indentation consistently use tabs instead of using spaces just
authorFred Drake <fdrake@acm.org>
Wed, 20 Dec 2000 00:55:07 +0000 (00:55 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 20 Dec 2000 00:55:07 +0000 (00:55 +0000)
in one place.

Objects/fileobject.c

index 96d3830d8b69f81945c8f8354be3e191aeac9d5b..ea8fe9dccfe909e5bc01f8f8aa4db20d5159785b 100644 (file)
@@ -660,9 +660,9 @@ get_line(PyFileObject *f, int n)
                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;