From: nhmall Date: Mon, 20 Jun 2022 23:57:13 +0000 (-0400) Subject: clear an unused variable warning X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ce9aa451f453ba60f4e99b0e03c097c5c4b788fe;p=nethack clear an unused variable warning --- diff --git a/src/options.c b/src/options.c index 170329e8b..66a9318ad 100644 --- a/src/options.c +++ b/src/options.c @@ -4324,7 +4324,7 @@ int pfxfn_verbose(int optidx UNUSED, int req, boolean negated, } if (req == do_handler) { reslt = handler_verbose(optidx); - return optn_ok; + return reslt; } return optn_ok; }