Show all flags in data refs, not just the first one

This commit is contained in:
pancake 2017-05-13 19:38:14 +02:00
parent 02a905c5a4
commit ea2751993f

View File

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