sscanf warning: Strings without a length are deprecated, please add a destination size.
#2

You get this error because your string without a length you used
pawn Код:
new reason[24];
if(sscanf(params, "s",reason))...//empty string cell
You should use instead:
pawn Код:
new reason[24];
if(sscanf(params, "s[24]",reason)) ...
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)