1
0
mirror of git://projects.qi-hardware.com/wernermisc.git synced 2024-12-18 22:13:08 +02:00

m1rc3/norruption/2/bscmp: show number of corruption as i/n instead of (n)

This commit is contained in:
Werner Almesberger 2011-10-11 14:41:03 -03:00
parent 71495fe69f
commit a83a711733

View File

@ -49,8 +49,10 @@ for (sort keys %c) {
}
$s{$i} .= $s;
}
$i = 0;
for $a (@a) {
$s{$a} .= " | $_ ($n)\n";
$i++;
$s{$a} .= " | $_ $i/$n\n";
}
}