Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 13 Feb 2024 06:22:24 GMT
From:      Li-Wen Hsu <lwhsu@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 3cddabf0bd5f - main - sh(1): Grammar fix in jobs.c
Message-ID:  <202402130622.41D6MOnd091203@gitrepo.freebsd.org>

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

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

commit 3cddabf0bd5fa9532fe2a1653b7b30f0ffe40401
Author:     Fu-Cheng Wang <s111062755@m111.nthu.edu.tw>
AuthorDate: 2024-01-04 06:15:09 +0000
Commit:     Li-Wen Hsu <lwhsu@FreeBSD.org>
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 */



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