diff options
Diffstat (limited to 'perl-install/common.pm')
-rw-r--r-- | perl-install/common.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/common.pm b/perl-install/common.pm index 148011f51..927b863f7 100644 --- a/perl-install/common.pm +++ b/perl-install/common.pm @@ -446,7 +446,7 @@ sub removeXiBSuffix($) { sub formatTime($) { my ($s, $m, $h) = gmtime($_[0]); - sprintf "%02d:%02d:%02d", $h, $m, $s; + sprintf "%02d:%02d:%02d", $h, $m, 10 * int (($s + 5) / 10); } |