mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-27 15:10:53 +00:00
Fix GMT cast typo in rax2 (#15226)
This commit is contained in:
parent
f24f3b31db
commit
fdc3cf8bd8
@ -359,7 +359,7 @@ dotherax:
|
||||
char *ts = r_list_head (split)->data;
|
||||
char *gmt = NULL;
|
||||
if (r_list_length (split) >= 2 && strlen (r_list_head (split)->n->data) > 2) {
|
||||
gmt = (const ut8*) r_list_head (split)->n->data + 2;
|
||||
gmt = (char *) r_list_head (split)->n->data + 2;
|
||||
}
|
||||
ut32 n = r_num_math (num, ts);
|
||||
RPrint *p = r_print_new ();
|
||||
|
Loading…
Reference in New Issue
Block a user