Module Name: src
Committed By: rillig
Date: Sun Apr 18 10:04:23 UTC 2021
Modified Files:
src/usr.bin/xlint/lint1: lint1.h
Log Message:
lint: align the member access macros for tnode_t
To generate a diff of this commit:
cvs rdiff -u -r1.97 -r1.98 src/usr.bin/xlint/lint1/lint1.h
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/lint1.h
diff -u src/usr.bin/xlint/lint1/lint1.h:1.97 src/usr.bin/xlint/lint1/lint1.h:1.98
--- src/usr.bin/xlint/lint1/lint1.h:1.97 Sun Apr 18 08:52:04 2021
+++ src/usr.bin/xlint/lint1/lint1.h Sun Apr 18 10:04:23 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: lint1.h,v 1.97 2021/04/18 08:52:04 rillig Exp $ */
+/* $NetBSD: lint1.h,v 1.98 2021/04/18 10:04:23 rillig Exp $ */
/*
* Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved.
@@ -307,10 +307,10 @@ typedef struct tnode {
} tn_u;
} tnode_t;
-#define tn_left tn_u.tn_s._tn_left
-#define tn_right tn_u.tn_s._tn_right
-#define tn_sym tn_u._tn_sym
-#define tn_val tn_u._tn_val
+#define tn_left tn_u.tn_s._tn_left
+#define tn_right tn_u.tn_s._tn_right
+#define tn_sym tn_u._tn_sym
+#define tn_val tn_u._tn_val
#define tn_string tn_u._tn_string
/*