diff options
author | Jim Meyering <jim@meyering.net> | 1997-07-13 02:52:58 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-07-13 02:52:58 +0000 |
commit | ad0f8c9b718d0a797d67ddf4d6dc921d5951758e (patch) | |
tree | 06eb8ea94b180f24f92abaf9d89e22582c854881 /src | |
parent | 67fe78f11c0120dfe8bf6e6eed2647c72e85d50c (diff) | |
download | coreutils-ad0f8c9b718d0a797d67ddf4d6dc921d5951758e.tar.xz |
(uptime): rename users to n_users
Diffstat (limited to 'src')
-rw-r--r-- | src/uptime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uptime.c b/src/uptime.c index 82338fd9b..506da1126 100644 --- a/src/uptime.c +++ b/src/uptime.c @@ -141,8 +141,8 @@ print_uptime (int n) static void uptime (const char *filename) { - int users = read_utmp (filename); - print_uptime (users); + int n_users = read_utmp (filename); + print_uptime (n_users); } static void |