Module Name:    src
Committed By:   rillig
Date:           Tue Jan  5 00:22:05 UTC 2021

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

Log Message:
lint: clean up comments


To generate a diff of this commit:
cvs rdiff -u -r1.50 -r1.51 src/usr.bin/xlint/lint1/func.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/lint1/func.c
diff -u src/usr.bin/xlint/lint1/func.c:1.50 src/usr.bin/xlint/lint1/func.c:1.51
--- src/usr.bin/xlint/lint1/func.c:1.50	Mon Jan  4 22:26:50 2021
+++ src/usr.bin/xlint/lint1/func.c	Tue Jan  5 00:22:04 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: func.c,v 1.50 2021/01/04 22:26:50 rillig Exp $	*/
+/*	$NetBSD: func.c,v 1.51 2021/01/05 00:22:04 rillig Exp $	*/
 
 /*
  * Copyright (c) 1994, 1995 Jochen Pohl
@@ -37,7 +37,7 @@
 
 #include <sys/cdefs.h>
 #if defined(__RCSID) && !defined(lint)
-__RCSID("$NetBSD: func.c,v 1.50 2021/01/04 22:26:50 rillig Exp $");
+__RCSID("$NetBSD: func.c,v 1.51 2021/01/05 00:22:04 rillig Exp $");
 #endif
 
 #include <stdlib.h>
@@ -496,7 +496,7 @@ case_label(tnode_t *tn)
 {
 	cstk_t	*ci;
 
-	/* find the stack entry for the innermost switch statement */
+	/* find the innermost switch statement */
 	for (ci = cstmt; ci != NULL && !ci->c_switch; ci = ci->c_surrounding)
 		continue;
 
@@ -512,7 +512,7 @@ default_label(void)
 {
 	cstk_t	*ci;
 
-	/* find the stack entry for the innermost switch statement */
+	/* find the innermost switch statement */
 	for (ci = cstmt; ci != NULL && !ci->c_switch; ci = ci->c_surrounding)
 		continue;
 

Reply via email to