summaryrefslogtreecommitdiff
path: root/usr.bin/make
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2001-09-15 18:43:42 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2001-09-15 18:43:42 +0000
commit6246168fbb4199c1869ffbcf5f8c13a19be10684 (patch)
tree6066930630d362fc95fb2771ca69b5924afabf71 /usr.bin/make
parentd8a1a21dad5efe6ac4d5baa15bf6cc88621b2843 (diff)
fix a pasto, fix pr 1969
Diffstat (limited to 'usr.bin/make')
-rw-r--r--usr.bin/make/compat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/compat.c b/usr.bin/make/compat.c
index 557c8c7ebbf..695fd29d363 100644
--- a/usr.bin/make/compat.c
+++ b/usr.bin/make/compat.c
@@ -1,5 +1,5 @@
/* $OpenPackages$ */
-/* $OpenBSD: compat.c,v 1.39 2001/05/29 12:53:39 espie Exp $ */
+/* $OpenBSD: compat.c,v 1.40 2001/09/15 18:43:41 mickey Exp $ */
/* $NetBSD: compat.c,v 1.14 1996/11/06 17:59:01 christos Exp $ */
/*
@@ -630,5 +630,5 @@ Compat_Run(targs)
/* If the user has defined a .END target, run its commands. */
if (errors == 0)
- Lst_Find(&ENDNode->commands, CompatRunCommand, gn);
+ Lst_Find(&ENDNode->commands, CompatRunCommand, ENDNode);
}