summaryrefslogtreecommitdiff
path: root/parse.c
diff options
context:
space:
mode:
authorSimon J. Gerraty <sjg@FreeBSD.org>2026-05-13 04:20:50 +0000
committerSimon J. Gerraty <sjg@FreeBSD.org>2026-05-13 04:20:50 +0000
commitef402bba84260816d3e8d6e2439b0bc7eddc9446 (patch)
treedd34b0ce295c31fa6eacc9ac6efbf7451115660b /parse.c
parentfe271bdb43cf88ee129d94c0e286fe618fd28e89 (diff)
Diffstat (limited to 'parse.c')
-rw-r--r--parse.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/parse.c b/parse.c
index bbbffaa71c16..d08727253d5d 100644
--- a/parse.c
+++ b/parse.c
@@ -1,4 +1,4 @@
-/* $NetBSD: parse.c,v 1.755 2026/02/10 18:53:34 sjg Exp $ */
+/* $NetBSD: parse.c,v 1.756 2026/04/06 17:13:55 rillig Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -110,7 +110,7 @@
#include "pathnames.h"
/* "@(#)parse.c 8.3 (Berkeley) 3/19/94" */
-MAKE_RCSID("$NetBSD: parse.c,v 1.755 2026/02/10 18:53:34 sjg Exp $");
+MAKE_RCSID("$NetBSD: parse.c,v 1.756 2026/04/06 17:13:55 rillig Exp $");
/* Detects a multiple-inclusion guard in a makefile. */
typedef enum {
@@ -724,7 +724,7 @@ TryApplyDependencyOperator(GNode *gn, GNodeType op)
* operator also defines a dependency, they must match.
*/
if ((op & OP_OPMASK) && (gn->type & OP_OPMASK) &&
- ((op & OP_OPMASK) != (gn->type & OP_OPMASK))) {
+ (op & OP_OPMASK) != (gn->type & OP_OPMASK)) {
Parse_Error(PARSE_FATAL, "Inconsistent operator for %s",
gn->name);
return false;