]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Fix indentation, from gnulib.
authorJim Meyering <jim@meyering.net>
Thu, 16 Oct 2003 07:58:53 +0000 (07:58 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 16 Oct 2003 07:58:53 +0000 (07:58 +0000)
lib/readutmp.c

index 941d8c9f448534a8d92d9600426688b741cf41c2..71a913df0b0358129cb9946c0e8c71109125c920 100644 (file)
@@ -112,7 +112,7 @@ read_utmp (const char *filename, int *n_entries, STRUCT_UTMP **utmp_buf)
       return 1;
     }
   size = file_stats.st_size;
-    buf = xmalloc (size);
+  buf = xmalloc (size);
   n_read = fread (buf, sizeof *buf, size / sizeof *buf, utmp);
   if (ferror (utmp))
     {
@@ -127,7 +127,7 @@ read_utmp (const char *filename, int *n_entries, STRUCT_UTMP **utmp_buf)
       int e = errno;
       free (buf);
       errno = e;
-    return 1;
+      return 1;
     }
 
   *n_entries = n_read;