From e4753f619f391288ea708475da73712a034f5a88 Mon Sep 17 00:00:00 2001 From: PatR Date: Fri, 19 Aug 2022 06:26:13 -0700 Subject: [PATCH] document that dochugw() return value is ignored --- src/mon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mon.c b/src/mon.c index cec987a86..94e292d7c 100644 --- a/src/mon.c +++ b/src/mon.c @@ -1050,7 +1050,7 @@ movemon_singlemon(struct monst *mtmp) && fightm(mtmp)) return FALSE; /* mon might have died */ } - dochugw(mtmp, TRUE); /* otherwise just move the monster */ + (void) dochugw(mtmp, TRUE); /* otherwise just move the monster */ return FALSE; }