summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr.bin/make/parse.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c
index d5f102dfe33..ff2954dbd59 100644
--- a/usr.bin/make/parse.c
+++ b/usr.bin/make/parse.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.c,v 1.103 2012/04/17 09:34:15 espie Exp $ */
+/* $OpenBSD: parse.c,v 1.104 2012/04/20 13:28:11 espie Exp $ */
/* $NetBSD: parse.c,v 1.29 1997/03/10 21:20:04 christos Exp $ */
/*
@@ -328,8 +328,8 @@ ParseDoOp(GNode **gnp, unsigned int op)
Parse_Error(PARSE_FATAL,
"Inconsistent dependency operator for target %s\n"
"\t(was %s%s, now %s%s)",
- gn->name, gn->name, operator_string(op),
- gn->name, operator_string(gn->type));
+ gn->name, gn->name, operator_string(gn->type),
+ gn->name, operator_string(op));
return 0;
}