summaryrefslogtreecommitdiff
path: root/lst.lib/lstAtEnd.c
diff options
context:
space:
mode:
authorSimon J. Gerraty <sjg@FreeBSD.org>2020-07-08 18:32:15 +0000
committerSimon J. Gerraty <sjg@FreeBSD.org>2020-07-08 18:32:15 +0000
commit1a2b743f6b4022dada4eeaa96ac47a5c1a2429f5 (patch)
treed24792918468eb00f02c40f6f05a4de720d20fef /lst.lib/lstAtEnd.c
parent6e0296234fdf9b27f5b0d9f884223b7c2b5b3d03 (diff)
Notes
Diffstat (limited to 'lst.lib/lstAtEnd.c')
-rw-r--r--lst.lib/lstAtEnd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lst.lib/lstAtEnd.c b/lst.lib/lstAtEnd.c
index 10f191a2060c1..4eadfdb0e7f32 100644
--- a/lst.lib/lstAtEnd.c
+++ b/lst.lib/lstAtEnd.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lstAtEnd.c,v 1.13 2009/01/23 21:26:30 dsl Exp $ */
+/* $NetBSD: lstAtEnd.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: lstAtEnd.c,v 1.13 2009/01/23 21:26:30 dsl Exp $";
+static char rcsid[] = "$NetBSD: lstAtEnd.c,v 1.14 2020/07/03 08:37:56 rillig Exp $";
#else
#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)lstAtEnd.c 8.1 (Berkeley) 6/6/93";
#else
-__RCSID("$NetBSD: lstAtEnd.c,v 1.13 2009/01/23 21:26:30 dsl Exp $");
+__RCSID("$NetBSD: lstAtEnd.c,v 1.14 2020/07/03 08:37:56 rillig Exp $");
#endif
#endif /* not lint */
#endif
@@ -75,5 +75,5 @@ Lst_AtEnd(Lst l, void *d)
LstNode end;
end = Lst_Last(l);
- return (Lst_InsertAfter(l, end, d));
+ return Lst_InsertAfter(l, end, d);
}