summaryrefslogtreecommitdiffstats
path: root/perl-install/common.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>1999-11-28 19:14:45 +0000
committerPascal Rigaux <pixel@mandriva.com>1999-11-28 19:14:45 +0000
commit2ee22881483e84ea8b5ef0a5125631c04d174617 (patch)
tree049f83e2f8ef8c2ed3630d26b8a9f9c525202709 /perl-install/common.pm
parent68db145d16c5fa22c876b294411cb9417ad3b08e (diff)
downloaddrakx-backup-do-not-use-2ee22881483e84ea8b5ef0a5125631c04d174617.tar
drakx-backup-do-not-use-2ee22881483e84ea8b5ef0a5125631c04d174617.tar.gz
drakx-backup-do-not-use-2ee22881483e84ea8b5ef0a5125631c04d174617.tar.bz2
drakx-backup-do-not-use-2ee22881483e84ea8b5ef0a5125631c04d174617.tar.xz
drakx-backup-do-not-use-2ee22881483e84ea8b5ef0a5125631c04d174617.zip
no_comment
Diffstat (limited to 'perl-install/common.pm')
-rw-r--r--perl-install/common.pm2
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);
}