Posts: 124
Threads: 7
Joined: Sep 2011
Reputation:
0
sscanf warning: Strings without a length are deprecated, please add a destination size. WTF this?
Posts: 929
Threads: 17
Joined: Mar 2012
Reputation:
0
in your sscanf code you now have to set the size of a string
so where it was
"iiffs"
sshould become
"iiffs[size]"
like
"iiffs[32]" //string size set to 32