summaryrefslogtreecommitdiff
path: root/games/hunt/huntd
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2015-09-27 07:06:42 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2015-09-27 07:06:42 +0000
commitd5ed9666bcc654146baaddb7c1d6fef143d8d4a2 (patch)
treeab8717e5846f01a8264631a304cbd60c9f516759 /games/hunt/huntd
parentd750e0094c665e89da0e1a748229784bc32b3719 (diff)
Delete pointless NOSTRICT comments
Diffstat (limited to 'games/hunt/huntd')
-rw-r--r--games/hunt/huntd/execute.c4
-rw-r--r--games/hunt/huntd/expl.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/games/hunt/huntd/execute.c b/games/hunt/huntd/execute.c
index 4706988f19b..1a7ade12933 100644
--- a/games/hunt/huntd/execute.c
+++ b/games/hunt/huntd/execute.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: execute.c,v 1.9 2015/08/22 14:47:41 deraadt Exp $ */
+/* $OpenBSD: execute.c,v 1.10 2015/09/27 07:06:41 guenther Exp $ */
/* $NetBSD: execute.c,v 1.2 1997/10/10 16:33:13 lukem Exp $ */
/*
* Copyright (c) 1983-2003, Regents of the University of California.
@@ -516,7 +516,7 @@ create_shot(type, y, x, face, charge, size, owner, score, expl, over)
{
BULLET *bp;
- bp = malloc(sizeof (BULLET)); /* NOSTRICT */
+ bp = malloc(sizeof (BULLET));
if (bp == NULL) {
logit(LOG_ERR, "malloc");
if (owner != NULL)
diff --git a/games/hunt/huntd/expl.c b/games/hunt/huntd/expl.c
index 4bf8ba3fd47..7da6ba71216 100644
--- a/games/hunt/huntd/expl.c
+++ b/games/hunt/huntd/expl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: expl.c,v 1.10 2015/08/22 14:47:41 deraadt Exp $ */
+/* $OpenBSD: expl.c,v 1.11 2015/09/27 07:06:41 guenther Exp $ */
/* $NetBSD: expl.c,v 1.2 1997/10/10 16:33:18 lukem Exp $ */
/*
* Copyright (c) 1983-2003, Regents of the University of California.
@@ -58,7 +58,7 @@ showexpl(y, x, type)
return;
if (x < 0 || x >= WIDTH)
return;
- ep = malloc(sizeof (EXPL)); /* NOSTRICT */
+ ep = malloc(sizeof (EXPL));
if (ep == NULL) {
logit(LOG_ERR, "malloc");
return;