aboutsummaryrefslogtreecommitdiff
path: root/contrib/bmake/lst.lib/lstAppend.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/bmake/lst.lib/lstAppend.c')
-rw-r--r--contrib/bmake/lst.lib/lstAppend.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/contrib/bmake/lst.lib/lstAppend.c b/contrib/bmake/lst.lib/lstAppend.c
index 97e60d959d7d..4dafe831450e 100644
--- a/contrib/bmake/lst.lib/lstAppend.c
+++ b/contrib/bmake/lst.lib/lstAppend.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lstAppend.c,v 1.15 2020/07/03 08:37:56 rillig Exp $ */
+/* $NetBSD: lstAppend.c,v 1.14 2009/01/23 21:26:30 dsl Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -33,14 +33,14 @@
*/
#ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: lstAppend.c,v 1.15 2020/07/03 08:37:56 rillig Exp $";
+static char rcsid[] = "$NetBSD: lstAppend.c,v 1.14 2009/01/23 21:26:30 dsl Exp $";
#else
#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)lstAppend.c 8.1 (Berkeley) 6/6/93";
#else
-__RCSID("$NetBSD: lstAppend.c,v 1.15 2020/07/03 08:37:56 rillig Exp $");
+__RCSID("$NetBSD: lstAppend.c,v 1.14 2009/01/23 21:26:30 dsl Exp $");
#endif
#endif /* not lint */
#endif
@@ -85,7 +85,7 @@ Lst_InsertAfter(Lst l, LstNode ln, void *d)
}
if (!LstValid (l) || LstIsEmpty (l) || ! LstNodeValid (ln, l)) {
- return FAILURE;
+ return (FAILURE);
}
ok:
@@ -117,5 +117,6 @@ Lst_InsertAfter(Lst l, LstNode ln, void *d)
}
}
- return SUCCESS;
+ return (SUCCESS);
}
+