Skip to content

Commit

Permalink
Add missing space in afi locals (radareorg#12317)
Browse files Browse the repository at this point in the history
  • Loading branch information
kazarmy authored Nov 25, 2018
1 parent e339ef5 commit f1fee53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libr/core/canal.c
Original file line number Diff line number Diff line change
Expand Up @@ -2571,7 +2571,7 @@ static int fcn_print_legacy(RCore *core, RAnalFunction *fcn) {
var_count += r_anal_var_count (core->anal, fcn, 's', 0);
var_count += r_anal_var_count (core->anal, fcn, 'r', 0);

r_cons_printf ("\nlocals:%d\nargs: %d\n", var_count, args_count);
r_cons_printf ("\nlocals: %d\nargs: %d\n", var_count, args_count);
r_anal_var_list_show (core->anal, fcn, 'b', 0);
r_anal_var_list_show (core->anal, fcn, 's', 0);
r_anal_var_list_show (core->anal, fcn, 'r', 0);
Expand Down

0 comments on commit f1fee53

Please sign in to comment.