git: 5b61930f590a - stable/12 - src/bin/ps: Fix spelling error
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 19 Nov 2021 05:00:42 UTC
The branch stable/12 has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=5b61930f590aa4c02204dc02e869f1d280b85bcc commit 5b61930f590aa4c02204dc02e869f1d280b85bcc Author: Elyes HAOUAS <ehaouas@noos.fr> AuthorDate: 2021-11-19 04:59:41 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2021-11-19 04:59:41 +0000 src/bin/ps: Fix spelling error Spell interruptible correctly. Pull Request: https://github.com/freebsd/freebsd-src/pull/544 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> (cherry picked from commit 3fe686f25a0d0844dc3afd0b3b067ec46abdbc99) --- bin/ps/print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ps/print.c b/bin/ps/print.c index 6c061aee67df..6850666c757b 100644 --- a/bin/ps/print.c +++ b/bin/ps/print.c @@ -236,7 +236,7 @@ state(KINFO *k, VARENT *ve __unused) break; case SSLEEP: - if (tdflags & TDF_SINTR) /* interruptable (long) */ + if (tdflags & TDF_SINTR) /* interruptible (long) */ *cp = k->ki_p->ki_slptime >= MAXSLP ? 'I' : 'S'; else *cp = 'D';