summaryrefslogtreecommitdiff
path: root/usr.bin/make/lst.lib/lstReplace.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/make/lst.lib/lstReplace.c')
-rw-r--r--usr.bin/make/lst.lib/lstReplace.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/make/lst.lib/lstReplace.c b/usr.bin/make/lst.lib/lstReplace.c
index d638c3a7f1d..f7008cbece8 100644
--- a/usr.bin/make/lst.lib/lstReplace.c
+++ b/usr.bin/make/lst.lib/lstReplace.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: lstReplace.c,v 1.6 1999/12/18 21:58:08 espie Exp $ */
+/* $OpenBSD: lstReplace.c,v 1.7 2000/06/10 01:41:07 espie Exp $ */
/* $NetBSD: lstReplace.c,v 1.5 1996/11/06 17:59:51 christos Exp $ */
/*
@@ -41,7 +41,7 @@
#if 0
static char sccsid[] = "@(#)lstReplace.c 8.1 (Berkeley) 6/6/93";
#else
-static char rcsid[] = "$OpenBSD: lstReplace.c,v 1.6 1999/12/18 21:58:08 espie Exp $";
+static char rcsid[] = "$OpenBSD: lstReplace.c,v 1.7 2000/06/10 01:41:07 espie Exp $";
#endif
#endif /* not lint */
@@ -63,10 +63,10 @@ static char rcsid[] = "$OpenBSD: lstReplace.c,v 1.6 1999/12/18 21:58:08 espie Ex
*-----------------------------------------------------------------------
*/
void
-Lst_Replace (ln, d)
+Lst_Replace(ln, d)
LstNode ln;
- ClientData d;
+ void *d;
{
if (ln != NULL)
- ((ListNode) ln)->datum = d;
+ ((ListNode)ln)->datum = d;
}