Fix format string for 32bit machines

This commit is contained in:
pancake 2017-05-29 23:48:03 +02:00
parent b93c237404
commit 1f04fb14c4

View File

@ -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 {