summaryrefslogtreecommitdiff
path: root/lst.lib/lstEnQueue.c
diff options
context:
space:
mode:
Diffstat (limited to 'lst.lib/lstEnQueue.c')
-rw-r--r--lst.lib/lstEnQueue.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/lst.lib/lstEnQueue.c b/lst.lib/lstEnQueue.c
index be386c91a5128..c6941a8eb9d30 100644
--- a/lst.lib/lstEnQueue.c
+++ b/lst.lib/lstEnQueue.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lstEnQueue.c,v 1.13 2009/01/23 21:26:30 dsl Exp $ */
+/* $NetBSD: lstEnQueue.c,v 1.14 2020/07/03 08:37:56 rillig Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -33,14 +33,14 @@
*/
#ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: lstEnQueue.c,v 1.13 2009/01/23 21:26:30 dsl Exp $";
+static char rcsid[] = "$NetBSD: lstEnQueue.c,v 1.14 2020/07/03 08:37:56 rillig Exp $";
#else
#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)lstEnQueue.c 8.1 (Berkeley) 6/6/93";
#else
-__RCSID("$NetBSD: lstEnQueue.c,v 1.13 2009/01/23 21:26:30 dsl Exp $");
+__RCSID("$NetBSD: lstEnQueue.c,v 1.14 2020/07/03 08:37:56 rillig Exp $");
#endif
#endif /* not lint */
#endif
@@ -70,9 +70,8 @@ ReturnStatus
Lst_EnQueue(Lst l, void *d)
{
if (LstValid (l) == FALSE) {
- return (FAILURE);
+ return FAILURE;
}
- return (Lst_InsertAfter(l, Lst_Last(l), d));
+ return Lst_InsertAfter(l, Lst_Last(l), d);
}
-