mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-03 20:22:38 +00:00
Fix arm32 db/cmd/cmd_pc (#18053)
This commit is contained in:
parent
6057ae3e2d
commit
8c742b28f0
@ -6,13 +6,13 @@
|
||||
static const char* bits_to_c_code_fmtstr(int bits) {
|
||||
switch (bits) {
|
||||
case 16:
|
||||
return "0x%04x";
|
||||
return "0x%04" PFMT64x;
|
||||
case 32:
|
||||
return "0x%08xU";
|
||||
return "0x%08" PFMT64x "U";
|
||||
case 64:
|
||||
return "0x%016" PFMT64x "ULL";
|
||||
}
|
||||
return "0x%02x";
|
||||
return "0x%02" PFMT64x;
|
||||
}
|
||||
|
||||
static int get_instruction_size(RPrint *p, ut64 at) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user