From: Pasi Kallinen Date: Sat, 21 Nov 2015 18:25:05 +0000 (+0200) Subject: Declare polearm range variables as static X-Git-Tag: NetHack-3.6.0_RC01~36 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=579ceb35c1cac6420f6a99988a9cd9b04562fd2c;p=nethack Declare polearm range variables as static --- diff --git a/src/apply.c b/src/apply.c index 4f0bf0391..22cef7f5a 100644 --- a/src/apply.c +++ b/src/apply.c @@ -2731,8 +2731,8 @@ int min_range, max_range; return TRUE; } -int polearm_range_min = -1; -int polearm_range_max = -1; +static int polearm_range_min = -1; +static int polearm_range_max = -1; void display_polearm_positions(state)