From: Jim Meyering Date: Sat, 16 Mar 1996 05:44:02 +0000 (+0000) Subject: (read_utmp): Declare n_read to be of type size_t rather than int. X-Git-Tag: SH-UTILS-1_12e~56 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e5cc5e04e97b90db1442bb6f0a1abb2bc5b84a6;p=thirdparty%2Fcoreutils.git (read_utmp): Declare n_read to be of type size_t rather than int. --- 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");