diff options
author | Heikki Korpela <heko@cvs.openbsd.org> | 2001-08-13 22:41:17 +0000 |
---|---|---|
committer | Heikki Korpela <heko@cvs.openbsd.org> | 2001-08-13 22:41:17 +0000 |
commit | 2ebd962e9e733d6fee101b4ea008705d0ef319da (patch) | |
tree | d7af53796352dfd77181c2fb0327b82dd596265b /bin | |
parent | 1d57637c6b6a068168afa1817230fafab3c87e92 (diff) |
Typo in comments: 'interuptable' => 'interruptible'
millert@ ok
Diffstat (limited to 'bin')
-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 4947eced58d..4b75fac4c25 100644 --- a/bin/ps/print.c +++ b/bin/ps/print.c @@ -1,4 +1,4 @@ -/* $OpenBSD: print.c,v 1.17 2001/04/30 09:37:11 art Exp $ */ +/* $OpenBSD: print.c,v 1.18 2001/08/13 22:41:16 heko 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.17 2001/04/30 09:37:11 art Exp $"; +static char rcsid[] = "$OpenBSD: print.c,v 1.18 2001/08/13 22:41:16 heko Exp $"; #endif #endif /* not lint */ @@ -210,7 +210,7 @@ state(k, ve) break; case SSLEEP: - if (flag & P_SINTR) /* interuptable (long) */ + if (flag & P_SINTR) /* interruptible (long) */ *cp = p->p_slptime >= MAXSLP ? 'I' : 'S'; else *cp = 'D'; |