Skip to content

Commit

Permalink
Use base64 in "ax," and also show ref size column ##analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
radare authored and trufae committed Nov 21, 2023
1 parent ad17908 commit 90de71b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libr/anal/xrefs.c
Original file line number Diff line number Diff line change
Expand Up @@ -347,8 +347,8 @@ static void r_anal_xrefs_list_table(RAnal *anal, RVecAnalRef *anal_refs, const c

char *fromname = anal->coreb.getNameDelta (anal->coreb.core, ref->addr);
char *toname = anal->coreb.getNameDelta (anal->coreb.core, ref->at);
r_table_add_rowf (table, "ddssss",
ref->at, ref->addr,
r_table_add_rowf (table, "xxnssss",
ref->at, ref->addr, ref->size,
r_anal_ref_type_tostring (t),
r_anal_ref_perm_tostring (ref),
toname, fromname
Expand Down

0 comments on commit 90de71b

Please sign in to comment.