From 28ecdc6bc79add5a16ed094e228102473f422998 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 18 Jun 2022 06:52:46 -0700 Subject: [PATCH] No need to cast from char* to const char* --- test/testautomation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testautomation.c b/test/testautomation.c index 0dc37f4a0..5f469db2b 100644 --- a/test/testautomation.c +++ b/test/testautomation.c @@ -101,7 +101,7 @@ main(int argc, char *argv[]) } /* Call Harness */ - result = SDLTest_RunSuites(testSuites, (const char *)userRunSeed, userExecKey, (const char *)filter, testIterations); + result = SDLTest_RunSuites(testSuites, userRunSeed, userExecKey, filter, testIterations); /* Empty event queue */ done = 0;