Fix warnings, only major one being an SDL_SetError not providing enough arguments.

This commit is contained in:
Brandon Schaefer
2014-06-05 15:29:23 -07:00
parent 6671aa2a08
commit 1f71676906
4 changed files with 4 additions and 4 deletions

View File

@@ -564,7 +564,7 @@ int SDLTest_RunSuites(SDLTest_TestSuiteReference *testSuites[], const char *user
execKey = SDLTest_GenerateExecKey((char *)runSeed, testSuite->name, testCase->name, iterationCounter);
}
SDLTest_Log("Test Iteration %i: execKey %llu", iterationCounter, execKey);
SDLTest_Log("Test Iteration %i: execKey %" PRIu64 "", iterationCounter, execKey);
testResult = SDLTest_RunTest(testSuite, testCase, execKey);
if (testResult == TEST_RESULT_PASSED) {