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

It's here:
Код:
if(sscanf(params, "s", name2))
You need to add the size of the string.
Код:
if(sscanf(params, "s[23]", name2))
Reply


Messages In This Thread
sscanf warning: Strings without a length are deprecated, please add a destination size. - by Slicebook - 14.12.2014, 17:35
Re: sscanf warning: Strings without a length are deprecated, please add a destination size. - by dominik523 - 14.12.2014, 17:39
Re: sscanf warning: Strings without a length are deprecated, please add a destination size. - by Slicebook - 14.12.2014, 18:24

Forum Jump:


Users browsing this thread: 1 Guest(s)