mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-24 06:48:46 +00:00
Fix format string for 32bit machines
This commit is contained in:
parent
b93c237404
commit
1f04fb14c4
@ -2937,7 +2937,7 @@ static void ds_print_ptr(RDisasmState *ds, int len, int idx) {
|
||||
if (p != UT64_MAX && p != UT32_MAX) {
|
||||
if (*n > -0xfff && *n < 0xfff) {
|
||||
ALIGN;
|
||||
ds_comment (ds, true, "; %d%s", p, nl);
|
||||
ds_comment (ds, true, "; %"PFMT64d"%s", p, nl);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user