SDL_itoa(): use _itoa_s(), not _ltoa_s()

typo introduced by commit 33c9f1a70a
This commit is contained in:
Ozkan Sezer
2026-05-23 20:11:10 +03:00
parent 0a96d47599
commit ae07e32269

View File

@@ -1156,7 +1156,7 @@ static const char ntoa_table[] = {
char *SDL_itoa(int value, char *string, int radix)
{
#ifdef HAVE__ITOA_S
(void)_ltoa_s(value, string, 12, radix);
(void)_itoa_s(value, string, 12, radix);
return string;
#elif defined(HAVE_ITOA)
return itoa(value, string, radix);