Description
Category:
Bug
The function
sprintf
is called with less arguments than the format string requires.
Example
sprintf
(
"%d %d\n"
,
17
);
// format string expects 2 arguments, only 1 given