aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2015-10-13 18:05:25 -0400
committerB. Watson <yalhcru@gmail.com>2015-10-13 18:05:25 -0400
commit28e0541c2b6c82f62a489be77a13e09644622e52 (patch)
tree6ac731f21b27180e1f2d7f585f66d999e292338f
parent10453a597b4186b1e4ed9e85c07afa3c88c7502f (diff)
downloadmisc-scripts-28e0541c2b6c82f62a489be77a13e09644622e52.tar.gz
bkt: add missing ->() to fix sorting
-rwxr-xr-xbkt2
1 files changed, 1 insertions, 1 deletions
diff --git a/bkt b/bkt
index eb1092c..df949d8 100755
--- a/bkt
+++ b/bkt
@@ -751,7 +751,7 @@ if(!$opt{C}) {
# since eval is slow.
my $sortsub = eval "sub " . $sortcode;
- for(sort { $sortsub } keys %counts) {
+ for(sort { $sortsub->() } keys %counts) {
(print_histogram($counts{$_}, $maxval, $histwidth), print $opt{o}) if $opt{H};
print (my $printable = render($_));
print " " x ($longest - length($printable)) unless $opt{P};