No need to cast from char* to const char*

main
Sam Lantinga 2022-06-18 06:52:46 -07:00
parent 53e307050b
commit 28ecdc6bc7
1 changed files with 1 additions and 1 deletions

View File

@ -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;