SDL: Increase maximum line length of SDLTest_LogAllocations

From 57f1ea71ab8244732f168f81fb8fd17095dbd364 Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Sun, 1 Sep 2024 02:18:47 +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 34ce498427846..491ddfedeeb9f 100644
--- a/src/test/SDL_test_memory.c
+++ b/src/test/SDL_test_memory.c
@@ -329,7 +329,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;