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: use consistent conditional compila...



details:   https://anonhg.NetBSD.org/src/rev/eb3a5e0b496d
branches:  trunk
changeset: 377343:eb3a5e0b496d
user:      rillig <rillig%NetBSD.org@localhost>
date:      Sat Jul 08 09:08:20 2023 +0000

description:
lint: use consistent conditional compilation guards

diffstat:

 usr.bin/xlint/lint1/main1.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 6f1ad1e342d4 -r eb3a5e0b496d usr.bin/xlint/lint1/main1.c
--- a/usr.bin/xlint/lint1/main1.c       Sat Jul 08 08:02:45 2023 +0000
+++ b/usr.bin/xlint/lint1/main1.c       Sat Jul 08 09:08:20 2023 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: main1.c,v 1.72 2023/07/07 06:03:31 rillig Exp $        */
+/*     $NetBSD: main1.c,v 1.73 2023/07/08 09:08:20 rillig Exp $        */
 
 /*
  * Copyright (c) 1994, 1995 Jochen Pohl
@@ -37,7 +37,7 @@
 
 #include <sys/cdefs.h>
 #if defined(__RCSID)
-__RCSID("$NetBSD: main1.c,v 1.72 2023/07/07 06:03:31 rillig Exp $");
+__RCSID("$NetBSD: main1.c,v 1.73 2023/07/08 09:08:20 rillig Exp $");
 #endif
 
 #include <sys/types.h>
@@ -222,7 +222,7 @@ main(int argc, char *argv[])
 #ifdef DEBUG
        setvbuf(stdout, NULL, _IONBF, 0);
 #endif
-#ifdef YYDEBUG
+#if YYDEBUG
        if (yflag)
                yydebug = 1;
 #endif



Home | Main Index | Thread Index | Old Index