The branch main has been updated by lwhsu:

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

commit 3cddabf0bd5fa9532fe2a1653b7b30f0ffe40401
Author:     Fu-Cheng Wang <[email protected]>
AuthorDate: 2024-01-04 06:15:09 +0000
Commit:     Li-Wen Hsu <[email protected]>
CommitDate: 2024-02-13 06:13:08 +0000

    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
---
 bin/sh/jobs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/sh/jobs.c b/bin/sh/jobs.c
index 90b5892f72b7..1328ae50edef 100644
--- a/bin/sh/jobs.c
+++ b/bin/sh/jobs.c
@@ -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 */

Reply via email to