mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-06-01 17:37:39 +00:00
Use the lower-case hex output to match other stack trace printouts
This commit is contained in:
parent
7079195697
commit
22b6df511b
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue