summaryrefslogtreecommitdiffstats
path: root/atc/list.c
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2014-03-22 22:09:14 +0000
committerdholland <dholland@NetBSD.org>2014-03-22 22:09:14 +0000
commit9d76f01669b1a4c02ade0e003744dfd853e079f5 (patch)
treece49fc8983b6418bd5ff853d728ca682e65a8efb /atc/list.c
parent7ab5b02c0c860845dbe12431fdfde7a094f7ac18 (diff)
downloadbsdgames-darwin-9d76f01669b1a4c02ade0e003744dfd853e079f5.tar.gz
bsdgames-darwin-9d76f01669b1a4c02ade0e003744dfd853e079f5.tar.zst
bsdgames-darwin-9d76f01669b1a4c02ade0e003744dfd853e079f5.zip
Don't cast the return value of malloc.
Diffstat (limited to 'atc/list.c')
-rw-r--r--atc/list.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/atc/list.c b/atc/list.c
index e6012081..4fd52d7c 100644
--- a/atc/list.c
+++ b/atc/list.c
@@ -1,4 +1,4 @@
-/* $NetBSD: list.c,v 1.7 2005/07/01 00:48:34 jmc Exp $ */
+/* $NetBSD: list.c,v 1.8 2014/03/22 22:09:14 dholland Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -46,7 +46,7 @@
#if 0
static char sccsid[] = "@(#)list.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: list.c,v 1.7 2005/07/01 00:48:34 jmc Exp $");
+__RCSID("$NetBSD: list.c,v 1.8 2014/03/22 22:09:14 dholland Exp $");
#endif
#endif /* not lint */
@@ -55,7 +55,7 @@ __RCSID("$NetBSD: list.c,v 1.7 2005/07/01 00:48:34 jmc Exp $");
PLANE *
newplane(void)
{
- return ((PLANE *) calloc(1, sizeof (PLANE)));
+ return calloc(1, sizeof (PLANE));
}
void