From b4ccc0f55a8f4c225ca131852a634b45f35fbe4e Mon Sep 17 00:00:00 2001 From: pancake Date: Sun, 24 Nov 2024 21:42:53 +0100 Subject: [PATCH] Fix column names in the ax, output ##analysis --- libr/anal/xrefs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libr/anal/xrefs.c b/libr/anal/xrefs.c index 5b64a8c6c239c..16eb5bd8dba9b 100644 --- a/libr/anal/xrefs.c +++ b/libr/anal/xrefs.c @@ -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) {