From fc1732e7581ae2965b84832df039be173223f97c Mon Sep 17 00:00:00 2001 From: Vincent Herbet Date: Sat, 9 Aug 2014 13:09:53 +0200 Subject: [PATCH] Fix possible compatibility issue, Unfortunately some plugin doesn't explicit max length, resulting a compilation error with AMXX 1.8.3 compiler. --- plugins/include/geoip.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/include/geoip.inc b/plugins/include/geoip.inc index 15f047e7..3e9a187b 100755 --- a/plugins/include/geoip.inc +++ b/plugins/include/geoip.inc @@ -94,7 +94,7 @@ native geoip_code3(const ip[], result[4]); * * @return The result length on successful lookup, 0 otherwise. */ -native geoip_country(const ip[], result[], len, id = -1); +native geoip_country(const ip[], result[], len = 45, id = -1); /**