diff options
Diffstat (limited to 'bin/ps/print.c')
-rw-r--r-- | bin/ps/print.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/ps/print.c b/bin/ps/print.c index 9e0096595e2..a52d9ebdeb8 100644 --- a/bin/ps/print.c +++ b/bin/ps/print.c @@ -1,4 +1,4 @@ -/* $OpenBSD: print.c,v 1.21 2001/12/01 19:01:45 deraadt Exp $ */ +/* $OpenBSD: print.c,v 1.22 2001/12/05 02:23:59 art Exp $ */ /* $NetBSD: print.c,v 1.27 1995/09/29 21:58:12 cgd Exp $ */ /*- @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)print.c 8.6 (Berkeley) 4/16/94"; #else -static char rcsid[] = "$OpenBSD: print.c,v 1.21 2001/12/01 19:01:45 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: print.c,v 1.22 2001/12/05 02:23:59 art Exp $"; #endif #endif /* not lint */ @@ -211,7 +211,7 @@ state(k, ve) case SSLEEP: if (flag & P_SINTR) /* interruptible (long) */ - *cp = p->p_slptime >= MAXSLP ? 'I' : 'S'; + *cp = p->p_slptime >= maxslp ? 'I' : 'S'; else *cp = 'D'; break; |