Browse Source

No need to cast from char* to const char*

Sam Lantinga 2 years ago
parent
commit
28ecdc6bc7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/testautomation.c

+ 1 - 1
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;