mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Prefer configured printf format for mingw gcc 10
This commit is contained in:
parent
d63bba1e24
commit
04eb05a8e0
1 changed files with 1 additions and 1 deletions
|
@ -726,7 +726,7 @@ dump_thread(void *arg)
|
|||
if (pSymFromAddr(ph, addr, &displacement, info)) {
|
||||
if (GetModuleFileName((HANDLE)(uintptr_t)pSymGetModuleBase64(ph, addr), libpath, sizeof(libpath)))
|
||||
fprintf(stderr, "%s", libpath);
|
||||
fprintf(stderr, "(%s+0x%I64x)",
|
||||
fprintf(stderr, "(%s+0x%"PRI_64_PREFIX"x)",
|
||||
info->Name, displacement);
|
||||
}
|
||||
fprintf(stderr, " [0x%p]", (void *)(VALUE)addr);
|
||||
|
|
Loading…
Reference in a new issue