From: Jim Meyering Date: Thu, 16 Oct 2003 07:58:53 +0000 (+0000) Subject: Fix indentation, from gnulib. X-Git-Tag: v5.1.0~371 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26f4d6734276e4a306520a6bc789ba416eb54e6c;p=thirdparty%2Fcoreutils.git Fix indentation, from gnulib. --- diff --git a/lib/readutmp.c b/lib/readutmp.c index 941d8c9f44..71a913df0b 100644 --- a/lib/readutmp.c +++ b/lib/readutmp.c @@ -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;