SDL: SDL_test: don't warn about expected allocations when running with --trackmem

From 98da2dd303b8aa506bd89b80e7de1bf3196cfae2 Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Fri, 25 Aug 2023 23:59:42 +0200
Subject: [PATCH] SDL_test: don't warn about expected allocations when running
 with --trackmem

Since 9f4baeea53b39ef20869a7ccd7d0b8fddba52726, the TLS storage is cleaned up when running SDL_Quit().
---
 src/test/SDL_test_memory.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/test/SDL_test_memory.c b/src/test/SDL_test_memory.c
index 96a953d3d017..19e09d0e06eb 100644
--- a/src/test/SDL_test_memory.c
+++ b/src/test/SDL_test_memory.c
@@ -284,8 +284,6 @@ void SDLTest_LogAllocations(void)
 
     SDL_strlcpy(line, "Memory allocations:\n", sizeof(line));
     ADD_LINE();
-    SDL_strlcpy(line, "Expect 2 allocations from within SDL_GetErrBuf()\n", sizeof(line));
-    ADD_LINE();
 
     count = 0;
     total_allocated = 0;