Module Name:    src
Committed By:   rillig
Date:           Sun Nov 28 20:11:45 UTC 2021

Modified Files:
        src/usr.bin/make: make.h

Log Message:
make: fix leftover typo from previous refactoring


To generate a diff of this commit:
cvs rdiff -u -r1.268 -r1.269 src/usr.bin/make/make.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/make/make.h
diff -u src/usr.bin/make/make.h:1.268 src/usr.bin/make/make.h:1.269
--- src/usr.bin/make/make.h:1.268	Sun Nov 28 19:51:06 2021
+++ src/usr.bin/make/make.h	Sun Nov 28 20:11:45 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: make.h,v 1.268 2021/11/28 19:51:06 rillig Exp $	*/
+/*	$NetBSD: make.h,v 1.269 2021/11/28 20:11:45 rillig Exp $	*/
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -321,7 +321,7 @@ typedef enum GNodeType {
 	OP_NOTARGET	= OP_NOTMAIN | OP_USE | OP_EXEC | OP_TRANSFORM
 } GNodeType;
 
-typedef struct GNodeFlagsS {
+typedef struct GNodeFlags {
 	/* this target needs to be (re)made */
 	bool remake:1;
 	/* children of this target were made */

Reply via email to