mirror of
https://github.com/radareorg/radare2.git
synced 2025-03-05 04:50:43 +00:00
Fix variable name/type swap on command print. fixes #2844
This commit is contained in:
parent
eb1f379d14
commit
c13f5aa9ff
@ -306,7 +306,7 @@ R_API void r_anal_var_list_show(RAnal *anal, RAnalFunction *fcn, int kind, int m
|
||||
// we cant express all type info here :(
|
||||
anal->printf ("af%c %d %s %s @ 0x%"PFMT64x"\n",
|
||||
kind, var->delta,
|
||||
var->type, var->name, fcn->addr);
|
||||
var->name, var->type, fcn->addr);
|
||||
break;
|
||||
case 'j':
|
||||
anal->printf ("{\"name\":\"%s\","
|
||||
|
Loading…
x
Reference in New Issue
Block a user