Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/xlint/lint1 lint: clean up comments



details:   https://anonhg.NetBSD.org/src/rev/3b00cfc379c4
branches:  trunk
changeset: 949214:3b00cfc379c4
user:      rillig <rillig%NetBSD.org@localhost>
date:      Tue Jan 05 00:22:04 2021 +0000

description:
lint: clean up comments

diffstat:

 usr.bin/xlint/lint1/func.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 6ec8932d5e39 -r 3b00cfc379c4 usr.bin/xlint/lint1/func.c
--- a/usr.bin/xlint/lint1/func.c        Tue Jan 05 00:17:21 2021 +0000
+++ b/usr.bin/xlint/lint1/func.c        Tue Jan 05 00:22:04 2021 +0000
@@ -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 @@
 {
        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 @@
 {
        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;
 



Home | Main Index | Thread Index | Old Index