Skip to content

Commit 3012927

Browse files
blukenpf
authored andcommitted
[IO] Fixed bug introduced in 10a9216
1 parent bcc1972 commit 3012927

File tree

1 file changed

+1
-1
lines changed
  • sources/core/common-libs/lib/OAR

1 file changed

+1
-1
lines changed

sources/core/common-libs/lib/OAR/IO.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10126,7 +10126,7 @@ sub format_stats(\@\@) {
1012610126
my @start = shift;
1012710127
my @end = shift;
1012810128
my ($time, $usec, $ssec, $cusec, $cssec, $trans) = array_substract(@end, @start);
10129-
my ($time, $usec, $ssec, $cusec, $cssec) = map sprintf("%.2f",$_), ($time, $usec, $ssec, $cusec, $cssec);
10129+
($time, $usec, $ssec, $cusec, $cssec) = map sprintf("%.2f",$_), ($time, $usec, $ssec, $cusec, $cssec);
1013010130
return "elapsed:${time}s user:${usec}s sys:${ssec}s child_user:${cusec}s child_sys:${cssec}s ; approx ${trans} DB transactions";
1013110131
}
1013210132

0 commit comments

Comments
 (0)