Fix possible compatibility issue,

Unfortunately some plugin doesn't explicit max length, resulting a compilation error with AMXX 1.8.3 compiler.
This commit is contained in:
Vincent Herbet 2014-08-09 13:09:53 +02:00
parent 486fa99602
commit fc1732e758

View File

@ -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);
/**