Right-justifying event names instead of left-justifying; easier to read when

large numbers are involved and the columns are wide.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@174
This commit is contained in:
Nicholas Nethercote 2002-04-30 11:34:54 +00:00
parent ce7ac6d869
commit ee24852e5a
2 changed files with 2 additions and 2 deletions

View File

@ -569,7 +569,7 @@ sub print_events ($)
my $event_width = length($event);
my $col_width = $CC_col_widths->[$i];
my $space = ' ' x ($col_width - $event_width);
print("$event$space ");
print("$space$event ");
}
}

View File

@ -569,7 +569,7 @@ sub print_events ($)
my $event_width = length($event);
my $col_width = $CC_col_widths->[$i];
my $space = ' ' x ($col_width - $event_width);
print("$event$space ");
print("$space$event ");
}
}