mirror of
https://github.com/yawut/SDL.git
synced 2026-06-10 10:46:40 -05:00
Turns out visualstudio does not like PRIu64, soo lets just cast it to llu.
This commit is contained in:
parent
aa844a18c6
commit
e6bd634e07
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user