diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2007-09-17 08:36:58 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2007-09-17 08:36:58 +0000 |
commit | 2b46902affaaa428e689d38c6456f3f1096496f6 (patch) | |
tree | e2a4f0abfd4f24d39e7749f2fc4aa64d7f84ca86 /usr.bin/make/compat.c | |
parent | e2265c677eef539f951f3bc828f691a00257219e (diff) |
kill += 1, -= 1 -> ++, --
Diffstat (limited to 'usr.bin/make/compat.c')
-rw-r--r-- | usr.bin/make/compat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/compat.c b/usr.bin/make/compat.c index ca3e5be55ed..8a6022fb73f 100644 --- a/usr.bin/make/compat.c +++ b/usr.bin/make/compat.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: compat.c,v 1.57 2007/09/16 14:18:40 espie Exp $ */ +/* $OpenBSD: compat.c,v 1.58 2007/09/17 08:36:57 espie Exp $ */ /* $NetBSD: compat.c,v 1.14 1996/11/06 17:59:01 christos Exp $ */ /* @@ -573,7 +573,7 @@ Compat_Run(Lst targs) /* List of target nodes to re-create */ else if (gn->made == ABORTED) { printf("`%s' not remade because of errors.\n", gn->name); - errors += 1; + errors++; } } |