mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-10 02:12:20 +00:00
Use vsnprintf instead of vsprintf
This commit is contained in:
parent
832e49adef
commit
4d02f245c3
2 changed files with 2 additions and 2 deletions
|
@ -57,7 +57,7 @@ void GRRLIB_GeckoPrintf (const char *text, ...) {
|
|||
|
||||
va_list argp;
|
||||
va_start(argp, text);
|
||||
size = vsprintf(tmp, text, argp);
|
||||
size = vsnprintf(tmp, sizeof(tmp), text, argp);
|
||||
va_end(argp);
|
||||
|
||||
usb_sendbuffer_safe(1, tmp, size);
|
||||
|
|
|
@ -78,7 +78,7 @@ void GRRLIB_PrintBMF (const f32 xpos, const f32 ypos,
|
|||
|
||||
va_list argp;
|
||||
va_start(argp, text);
|
||||
size = vsprintf(tmp, text, argp);
|
||||
size = vsnprintf(tmp, sizeof(tmp), text, argp);
|
||||
va_end(argp);
|
||||
|
||||
for (i=0; i<size; i++) {
|
||||
|
|
Loading…
Reference in a new issue