mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-02 18:27:18 +00:00
Show all flags in data refs, not just the first one
This commit is contained in:
parent
02a905c5a4
commit
ea2751993f
@ -1963,8 +1963,10 @@ static bool ds_print_data_type(RDisasmState *ds, const ut8 *buf, int ib, int siz
|
||||
}
|
||||
}
|
||||
}
|
||||
RFlagItem *fi = r_flag_get_i (core->flags, n);
|
||||
if (fi) {
|
||||
const RList *flags = r_flag_get_list (core->flags, n);
|
||||
RListIter *iter;
|
||||
RFlagItem *fi;
|
||||
r_list_foreach (flags, iter, fi) {
|
||||
r_cons_printf (" ; %s", fi->name);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user