From 579ceb35c1cac6420f6a99988a9cd9b04562fd2c Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Sat, 21 Nov 2015 20:25:05 +0200 Subject: [PATCH] Declare polearm range variables as static --- src/apply.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)