From 26f4d6734276e4a306520a6bc789ba416eb54e6c Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 16 Oct 2003 07:58:53 +0000 Subject: [PATCH] Fix indentation, from gnulib. --- lib/readutmp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.47.2