diff options
author | Jim Meyering <jim@meyering.net> | 1996-03-07 03:41:22 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-03-07 03:41:22 +0000 |
commit | a74458a36ebd06de5e054748e11c7e7ce02ef18d (patch) | |
tree | 717ef857b401cc7dbaff44334682451d26078046 /src | |
parent | e6c847ea05ed73ffd4006e0f1a9829a8097509c5 (diff) | |
download | coreutils-a74458a36ebd06de5e054748e11c7e7ce02ef18d.tar.xz |
(print_entry): Use STRUCT_UTMP, not `struct utmp'.
Diffstat (limited to 'src')
-rw-r--r-- | src/who-users.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/who-users.c b/src/who-users.c index 47298dcc0..4518e152d 100644 --- a/src/who-users.c +++ b/src/who-users.c @@ -188,7 +188,7 @@ idle_string (time_t when) /* Display a line of information about entry THIS. */ static void -print_entry (struct utmp *this) +print_entry (STRUCT_UTMP *this) { struct stat stats; time_t last_change; |