Skip to content

Commit

Permalink
Remove parenthesis from class size listing (#13238)
Browse files Browse the repository at this point in the history
  • Loading branch information
c-urly authored and radare committed Mar 8, 2019
1 parent 82416b0 commit fc63cda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libr/core/cbin.c
Expand Up @@ -2980,7 +2980,7 @@ static int bin_classes(RCore *r, int mode) {
}
} else {
int m = 0;
r_cons_printf ("0x%08"PFMT64x" [0x%08"PFMT64x" - 0x%08"PFMT64x"] (sz %"PFMT64d") class %d %s",
r_cons_printf ("0x%08"PFMT64x" [0x%08"PFMT64x" - 0x%08"PFMT64x"] %6"PFMT64d" class %d %s",
c->addr, at_min, at_max, (at_max - at_min), c->index, c->name);
if (c->super) {
r_cons_printf (" super: %s\n", c->super);
Expand Down

0 comments on commit fc63cda

Please sign in to comment.