Fix GMT cast typo in rax2 (#15226)

This commit is contained in:
David CARLIER 2019-10-08 09:55:00 +01:00 committed by radare
parent f24f3b31db
commit fdc3cf8bd8

View File

@ -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 ();