From ae07e32269d88cd20d9e7d00701d7b5a62da8955 Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Sat, 23 May 2026 20:11:10 +0300 Subject: [PATCH] SDL_itoa(): use _itoa_s(), not _ltoa_s() typo introduced by commit 33c9f1a70a813654a02c922aa33c658d8f9bd422 --- src/stdlib/SDL_string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stdlib/SDL_string.c b/src/stdlib/SDL_string.c index 51839404d2..b16b1c6792 100644 --- a/src/stdlib/SDL_string.c +++ b/src/stdlib/SDL_string.c @@ -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);