diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2012-04-20 13:28:12 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2012-04-20 13:28:12 +0000 |
commit | de29e781ba91dfd57c5b566339ec3337726dded3 (patch) | |
tree | d4194fea5abd460d43febe7e7f15c20d0a4bdbef /usr.bin/make | |
parent | 050c8647e2c18470cdfb2e5e22eeebdbd877f05f (diff) |
dyslexy strikes again
Diffstat (limited to 'usr.bin/make')
-rw-r--r-- | usr.bin/make/parse.c | 6 |
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; } |