Don't redefine standard macros, use SDL specific macros instead to avoid compiler warnings

This commit is contained in:
Sam Lantinga 2014-06-23 11:06:50 -07:00
parent 8b1634451e
commit 29eae011c5
3 changed files with 18 additions and 14 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 %" PRIu64, iterationCounter, execKey);
SDLTest_Log("Test Iteration %i: execKey %" SDL_PRIu64, iterationCounter, execKey);
testResult = SDLTest_RunTest(testSuite, testCase, execKey);
if (testResult == TEST_RESULT_PASSED) {