diff options
author | 2003-06-28 16:49:44 +0000 | |
---|---|---|
committer | 2003-06-28 16:49:44 +0000 | |
commit | 47b97df4a670e84e28f2824f85536ce6e02d3b01 (patch) | |
tree | 5661db5e9fb90aa726e8ff077e76962996533493 | |
parent | Be more careful when processing interrupts - the TS102 queues them, and we (diff) | |
download | wireguard-openbsd-47b97df4a670e84e28f2824f85536ce6e02d3b01.tar.xz wireguard-openbsd-47b97df4a670e84e28f2824f85536ce6e02d3b01.zip |
cleanup
-rw-r--r-- | usr.bin/fstat/fstat.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/fstat/fstat.c b/usr.bin/fstat/fstat.c index e4d4dd8c0f3..47fe4b4e13e 100644 --- a/usr.bin/fstat/fstat.c +++ b/usr.bin/fstat/fstat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fstat.c,v 1.45 2003/06/25 21:19:19 deraadt Exp $ */ +/* $OpenBSD: fstat.c,v 1.46 2003/06/28 16:49:44 deraadt Exp $ */ /*- * Copyright (c) 1988, 1993 @@ -37,7 +37,7 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)fstat.c 8.1 (Berkeley) 6/6/93";*/ -static char *rcsid = "$OpenBSD: fstat.c,v 1.45 2003/06/25 21:19:19 deraadt Exp $"; +static char *rcsid = "$OpenBSD: fstat.c,v 1.46 2003/06/28 16:49:44 deraadt Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -118,9 +118,9 @@ typedef struct devs { } DEVS; DEVS *devs; -int fsflg, /* show files on same filesystem as file(s) argument */ - pflg, /* show files open by a particular pid */ - uflg; /* show files open by a particular (effective) user */ +int fsflg; /* show files on same filesystem as file(s) argument */ +int pflg; /* show files open by a particular pid */ +int uflg; /* show files open by a particular (effective) user */ int checkfile; /* true if restricting to particular files or filesystems */ int nflg; /* (numerical) display f.s. and rdev as dev_t */ int oflg; /* display file offset */ |