Commit 28ecdc6bc79add5a16ed094e228102473f422998

Sam Lantinga 2022-06-18T06:52:46

No need to cast from char* to const char*

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/test/testautomation.c b/test/testautomation.c
index 0dc37f4..5f469db 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;