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>
This commit is contained in:
Elyes HAOUAS 2021-10-02 10:37:32 -06:00 committed by Warner Losh
parent 8db446034e
commit 3fe686f25a

View file

@ -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';