mirror of
https://github.com/revanced/smali.git
synced 2025-05-08 10:24:31 +02:00
Fix an incorrectly formatted offset to the debug info, in the dump for a code item
This commit is contained in:
parent
f8637cedd5
commit
82cdb8a8af
@ -234,7 +234,7 @@ public class CodeItem extends Item<CodeItem> {
|
||||
if (debugInfo == null) {
|
||||
out.annotate(4, "debug_info_off:");
|
||||
} else {
|
||||
out.annotate(4, "debug_info_off: 0x" + debugInfo.getOffset());
|
||||
out.annotate(4, "debug_info_off: 0x" + Integer.toHexString(debugInfo.getOffset()));
|
||||
}
|
||||
out.annotate(4, "insns_size: 0x" + Integer.toHexString(instructionsLength) + " (" +
|
||||
(instructionsLength) + ")");
|
||||
|
Loading…
x
Reference in New Issue
Block a user