Description
Category:
Bug
The function
sprintf()
is called with more arguments than the format requires. These extra arguments are completely ignored.
Example
sprintf
(
"%d %d\n"
,
1
,
2
,
3
);