summaryrefslogtreecommitdiff
path: root/lst.lib/lstDatum.c
diff options
context:
space:
mode:
Diffstat (limited to 'lst.lib/lstDatum.c')
-rw-r--r--lst.lib/lstDatum.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/lst.lib/lstDatum.c b/lst.lib/lstDatum.c
index 6e2d9ad0e73be..c8ccb558f3dc1 100644
--- a/lst.lib/lstDatum.c
+++ b/lst.lib/lstDatum.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lstDatum.c,v 1.13 2009/01/23 21:26:30 dsl Exp $ */
+/* $NetBSD: lstDatum.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: lstDatum.c,v 1.13 2009/01/23 21:26:30 dsl Exp $";
+static char rcsid[] = "$NetBSD: lstDatum.c,v 1.14 2020/07/03 08:37:56 rillig Exp $";
#else
#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)lstDatum.c 8.1 (Berkeley) 6/6/93";
#else
-__RCSID("$NetBSD: lstDatum.c,v 1.13 2009/01/23 21:26:30 dsl Exp $");
+__RCSID("$NetBSD: lstDatum.c,v 1.14 2020/07/03 08:37:56 rillig Exp $");
#endif
#endif /* not lint */
#endif
@@ -69,9 +69,8 @@ void *
Lst_Datum(LstNode ln)
{
if (ln != NULL) {
- return ((ln)->datum);
+ return ln->datum;
} else {
return NULL;
}
}
-