diff options
| author | Jake Burkholder <jake@FreeBSD.org> | 2000-05-26 02:09:24 +0000 |
|---|---|---|
| committer | Jake Burkholder <jake@FreeBSD.org> | 2000-05-26 02:09:24 +0000 |
| commit | e39756439c7255bc16ba14b7b991cb01ba1c93bd (patch) | |
| tree | 112dfed9c5841280f457e0dca97e8de49e04ecd9 /usr.bin/last | |
| parent | 13c6acf19de074f64f9ff031a2e5e660c7957fd2 (diff) | |
Notes
Diffstat (limited to 'usr.bin/last')
| -rw-r--r-- | usr.bin/last/last.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/last/last.c b/usr.bin/last/last.c index 719f1169d1b0..c87f6962075a 100644 --- a/usr.bin/last/last.c +++ b/usr.bin/last/last.c @@ -74,12 +74,12 @@ typedef struct arg { } ARG; ARG *arglist; /* head of linked list */ -LIST_HEAD(ttylisthead, struct ttytab) ttylist; +LIST_HEAD(ttylisthead, ttytab) ttylist; struct ttytab { time_t logout; /* log out time */ char tty[UT_LINESIZE + 1]; /* terminal name */ - LIST_ENTRY(struct ttytab) list; + LIST_ENTRY(ttytab) list; }; static long currentout, /* current logout value */ |
