From 2e5cc5e04e97b90db1442bb6f0a1abb2bc5b84a6 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 16 Mar 1996 05:44:02 +0000 Subject: [PATCH] (read_utmp): Declare n_read to be of type size_t rather than int. --- src/who-users.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/who-users.c b/src/who-users.c index 4cc9206abe..2313e4bb5c 100644 --- a/src/who-users.c +++ b/src/who-users.c @@ -410,7 +410,7 @@ read_utmp (char *filename) { FILE *utmp; struct stat file_stats; - int n_read; + size_t n_read; size_t size; utmp = fopen (filename, "r"); -- 2.47.2