diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-06-02 22:38:58 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-06-02 22:38:58 +0000 |
commit | 0dadbf37875b4b2e9b8b0c8f9713cb4a35467953 (patch) | |
tree | efb696df6e01f53e64e67f78b89a76803d2f5514 /usr.sbin/pstat | |
parent | 4e9807e35a98a122f1fe8215516fb13eda498745 (diff) |
KNF
Diffstat (limited to 'usr.sbin/pstat')
-rw-r--r-- | usr.sbin/pstat/pstat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pstat/pstat.c b/usr.sbin/pstat/pstat.c index 3873733b48d..c1e0f72b6fb 100644 --- a/usr.sbin/pstat/pstat.c +++ b/usr.sbin/pstat/pstat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pstat.c,v 1.31 2002/05/30 19:09:05 deraadt Exp $ */ +/* $OpenBSD: pstat.c,v 1.32 2002/06/02 22:38:57 deraadt Exp $ */ /* $NetBSD: pstat.c,v 1.27 1996/10/23 22:50:06 cgd Exp $ */ /*- @@ -44,7 +44,7 @@ static char copyright[] = #if 0 from: static char sccsid[] = "@(#)pstat.c 8.9 (Berkeley) 2/16/94"; #else -static char *rcsid = "$OpenBSD: pstat.c,v 1.31 2002/05/30 19:09:05 deraadt Exp $"; +static char *rcsid = "$OpenBSD: pstat.c,v 1.32 2002/06/02 22:38:57 deraadt Exp $"; #endif #endif /* not lint */ @@ -302,7 +302,7 @@ vnode_print(avnode, vp) /* * set type */ - switch(vp->v_type) { + switch (vp->v_type) { case VNON: type = "non"; break; case VREG: |