sh(1): Grammar fix in jobs.c

Event:		Advanced UNIX Programming Course (Fall’23) at NTHU.
Pull Request:	https://github.com/freebsd/freebsd-src/pull/992
This commit is contained in:
Fu-Cheng Wang 2024-01-04 14:15:09 +08:00 committed by Li-Wen Hsu
parent f4e0aec989
commit 3cddabf0bd
No known key found for this signature in database
GPG key ID: 82B261B14D3BC7AF

View file

@ -93,7 +93,7 @@ struct job {
short nprocs; /* number of processes */
pid_t pgrp; /* process group of this job */
char state; /* true if job is finished */
char used; /* true if this entry is in used */
char used; /* true if this entry is in use */
char changed; /* true if status has changed */
char foreground; /* true if running in the foreground */
char remembered; /* true if $! referenced */