diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-11-28 19:14:45 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-11-28 19:14:45 +0000 |
commit | 2ee22881483e84ea8b5ef0a5125631c04d174617 (patch) | |
tree | 049f83e2f8ef8c2ed3630d26b8a9f9c525202709 /perl-install/common.pm | |
parent | 68db145d16c5fa22c876b294411cb9417ad3b08e (diff) | |
download | drakx-2ee22881483e84ea8b5ef0a5125631c04d174617.tar drakx-2ee22881483e84ea8b5ef0a5125631c04d174617.tar.gz drakx-2ee22881483e84ea8b5ef0a5125631c04d174617.tar.bz2 drakx-2ee22881483e84ea8b5ef0a5125631c04d174617.tar.xz drakx-2ee22881483e84ea8b5ef0a5125631c04d174617.zip |
no_comment
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); } |