01.12.2012, 06:59
In any of the sscanf command you specified an extra or a less specifier that the other.
pawn Код:
new a,b,c;
sscanf(string,"ss",a,b,c);//Here 2 specifiers and 3 parameters.. Hence the warning
sscanf(string,"sss",a,b);//3 specifier and 2 parameter also lead to warning