SDL: Increase maximum line length of SDLTest_LogAllocations (c11b5)

From c11b58ead7eaa28af57d788cba6850e465505b2a Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Sun, 1 Sep 2024 02:19:39 +0200
Subject: [PATCH] Increase maximum line length of SDLTest_LogAllocations

---
 src/test/SDL_test_memory.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/SDL_test_memory.c b/src/test/SDL_test_memory.c
index aa69faca0d12e..98ee44fe15333 100644
--- a/src/test/SDL_test_memory.c
+++ b/src/test/SDL_test_memory.c
@@ -355,7 +355,7 @@ void SDLTest_LogAllocations(void)
 {
     char *message = NULL;
     size_t message_size = 0;
-    char line[128], *tmp;
+    char line[256], *tmp;
     SDL_tracked_allocation *entry;
     int index, count, stack_index;
     Uint64 total_allocated;