Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 2 Oct 2021 16:40:19 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 3fe686f25a0d - main - src/bin/ps: Fix spelling error
Message-ID:  <202110021640.192GeJTs003356@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=3fe686f25a0d0844dc3afd0b3b067ec46abdbc99

commit 3fe686f25a0d0844dc3afd0b3b067ec46abdbc99
Author:     Elyes HAOUAS <ehaouas@noos.fr>
AuthorDate: 2021-10-02 16:37:32 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2021-10-02 16:39:37 +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>
---
 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 2b61c6b0a15a..d4dbd9624011 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';



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202110021640.192GeJTs003356>