Module Name:    src
Committed By:   rillig
Date:           Tue Mar  8 23:24:20 UTC 2022

Modified Files:
        src/usr.bin/xlint/xlint: xlint.c

Log Message:
lint: fix typo in comment

No binary change.


To generate a diff of this commit:
cvs rdiff -u -r1.88 -r1.89 src/usr.bin/xlint/xlint/xlint.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/xlint/xlint/xlint.c
diff -u src/usr.bin/xlint/xlint/xlint.c:1.88 src/usr.bin/xlint/xlint/xlint.c:1.89
--- src/usr.bin/xlint/xlint/xlint.c:1.88	Tue Dec 28 22:59:56 2021
+++ src/usr.bin/xlint/xlint/xlint.c	Tue Mar  8 23:24:20 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: xlint.c,v 1.88 2021/12/28 22:59:56 rillig Exp $ */
+/* $NetBSD: xlint.c,v 1.89 2022/03/08 23:24:20 rillig Exp $ */
 
 /*
  * Copyright (c) 1996 Christopher G. Demetriou.  All Rights Reserved.
@@ -38,7 +38,7 @@
 
 #include <sys/cdefs.h>
 #if defined(__RCSID) && !defined(lint)
-__RCSID("$NetBSD: xlint.c,v 1.88 2021/12/28 22:59:56 rillig Exp $");
+__RCSID("$NetBSD: xlint.c,v 1.89 2022/03/08 23:24:20 rillig Exp $");
 #endif
 
 #include <sys/param.h>
@@ -756,7 +756,7 @@ runchild(const char *path, char *const *
 	case 0:
 		/* child */
 
-		/* setup the standard output if necessary */
+		/* set up the standard output if necessary */
 		if (fdout != -1) {
 			(void)dup2(fdout, STDOUT_FILENO);
 			(void)close(fdout);

Reply via email to