Fix compiler warnings in Native Client and Linux builds.

This commit is contained in:
Sam Clegg
2014-06-20 11:10:16 -03:00
parent 6c5cb5400f
commit 7e52722dfd
10 changed files with 34 additions and 7 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, (long long unsigned)execKey);
SDLTest_Log("Test Iteration %i: execKey %" PRIu64, iterationCounter, execKey);
testResult = SDLTest_RunTest(testSuite, testCase, execKey);
if (testResult == TEST_RESULT_PASSED) {