Turns out visualstudio does not like PRIu64, soo lets just cast it to llu.

main
Brandon Schaefer 2014-06-05 15:37:33 -07:00
parent 1f71676906
commit 04a0836b1a
1 changed files with 1 additions and 1 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 %llu", iterationCounter, (long long unsigned)execKey);
testResult = SDLTest_RunTest(testSuite, testCase, execKey);
if (testResult == TEST_RESULT_PASSED) {