diff options
author | markm <markm@FreeBSD.org> | 2003-10-18 10:04:16 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2003-10-18 10:04:16 +0000 |
commit | 3f45792057cf4f7381e74bec6f437cdb290e1817 (patch) | |
tree | 204484574f03753da73a26a0ec8c893e61e56e98 /lib/libutil/logout.c | |
parent | 4d1565cf183af3ea64b06fbc0cff68b6956350bb (diff) | |
download | FreeBSD-src-3f45792057cf4f7381e74bec6f437cdb290e1817.zip FreeBSD-src-3f45792057cf4f7381e74bec6f437cdb290e1817.tar.gz |
ANSIfy, WARNSify, CONSTify. Bit of style(9)-ify.
Diffstat (limited to 'lib/libutil/logout.c')
-rw-r--r-- | lib/libutil/logout.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libutil/logout.c b/lib/libutil/logout.c index b2753b9..292f898 100644 --- a/lib/libutil/logout.c +++ b/lib/libutil/logout.c @@ -54,8 +54,7 @@ static char sccsid[] = "@(#)logout.c 8.1 (Berkeley) 6/4/93"; typedef struct utmp UTMP; int -logout(line) - const char *line; +logout(const char *line) { int fd; UTMP ut; |