Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Use the lower-case hex output to match other stack trace printouts
  • Loading branch information
slouken committed Oct 12, 2017
1 parent 7079195 commit 22b6df5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/SDL_test_memory.c
Expand Up @@ -257,7 +257,7 @@ void SDLTest_LogAllocations()
if (!entry->stack[stack_index]) {
break;
}
SDL_snprintf(line, sizeof(line), "\t0x%"SDL_PRIX64": %s\n", entry->stack[stack_index], entry->stack_names[stack_index]);
SDL_snprintf(line, sizeof(line), "\t0x%"SDL_PRIx64": %s\n", entry->stack[stack_index], entry->stack_names[stack_index]);
ADD_LINE();
}
total_allocated += entry->size;
Expand Down

0 comments on commit 22b6df5

Please sign in to comment.