Skip to content

Commit

Permalink
Fix column names in the ax, output ##analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
radare authored and trufae committed Nov 24, 2024
1 parent 4c042f5 commit b4ccc0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libr/anal/xrefs.c
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ R_API bool r_anal_xrefs_has_xrefs_at(RAnal *anal, ut64 at) {

static void r_anal_xrefs_list_table(RAnal *anal, RVecAnalRef *anal_refs, const char *arg) {
RTable *table = r_table_new ("xrefs");
r_table_set_columnsf (table, "ddssss", "from", "to", "type", "perm", "fromname", "toname");
r_table_set_columnsf (table, "dddssss", "from", "to", "size", "type", "perm", "fromname", "toname");

RAnalRef *ref;
R_VEC_FOREACH (anal_refs, ref) {
Expand Down

0 comments on commit b4ccc0f

Please sign in to comment.