summaryrefslogtreecommitdiff
path: root/src/uptime.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-07-13 02:52:58 +0000
committerJim Meyering <jim@meyering.net>1997-07-13 02:52:58 +0000
commitad0f8c9b718d0a797d67ddf4d6dc921d5951758e (patch)
tree06eb8ea94b180f24f92abaf9d89e22582c854881 /src/uptime.c
parent67fe78f11c0120dfe8bf6e6eed2647c72e85d50c (diff)
downloadcoreutils-ad0f8c9b718d0a797d67ddf4d6dc921d5951758e.tar.xz
(uptime): rename users to n_users
Diffstat (limited to 'src/uptime.c')
-rw-r--r--src/uptime.c4
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