From 04a0836b1aefa200c2a62a347236905175e52eba Mon Sep 17 00:00:00 2001 From: Brandon Schaefer Date: Thu, 5 Jun 2014 15:37:33 -0700 Subject: [PATCH] Turns out visualstudio does not like PRIu64, soo lets just cast it to llu. --- src/test/SDL_test_harness.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/SDL_test_harness.c b/src/test/SDL_test_harness.c index 74e898efc2d67..7f4c39e38c33f 100644 --- a/src/test/SDL_test_harness.c +++ b/src/test/SDL_test_harness.c @@ -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) {