Skip to content

Commit

Permalink
Turns out visualstudio does not like PRIu64, soo lets just cast it to…
Browse files Browse the repository at this point in the history
… llu.
  • Loading branch information
BrandonSchaefer committed Jun 5, 2014
1 parent 1f71676 commit 04a0836
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/SDL_test_harness.c
Expand Up @@ -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) {
Expand Down

0 comments on commit 04a0836

Please sign in to comment.