mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-02 10:16:21 +00:00
add uint32 and uint64 to ? output
This commit is contained in:
parent
1d33705cc0
commit
1c30a14dc4
@ -553,8 +553,10 @@ static int cmd_help(void *data, const char *input) {
|
||||
} else {
|
||||
if (n >> 32) {
|
||||
r_cons_printf ("int64 %"PFMT64d"\n", (st64)n);
|
||||
r_cons_printf ("uint64 %"PFMT64u"\n", (ut64)n);
|
||||
} else {
|
||||
r_cons_printf ("int32 %d\n", (st32)n);
|
||||
r_cons_printf ("uint32 %u\n", (ut32)n);
|
||||
}
|
||||
r_cons_printf ("hex 0x%"PFMT64x"\n", n);
|
||||
r_cons_printf ("octal 0%"PFMT64o"\n", n);
|
||||
|
Loading…
Reference in New Issue
Block a user