summaryrefslogtreecommitdiffstats
path: root/perl-install/install/steps_gtk.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install/steps_gtk.pm')
-rw-r--r--perl-install/install/steps_gtk.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm
index 01f341c1f..213d1a96e 100644
--- a/perl-install/install/steps_gtk.pm
+++ b/perl-install/install/steps_gtk.pm
@@ -4,7 +4,6 @@ use diagnostics;
use strict;
use feature 'state';
use vars qw(@ISA);
-use Math::Int64 ':native_if_available', 'int64';
@ISA = qw(install::steps_interactive interactive::gtk);
@@ -628,7 +627,7 @@ sub installPackages {
if ($type eq 'user' && $subtype eq 'install') {
#- $amount and $total are used to return number of package and total size.
$nb = $amount;
- $total_size = $total; $current_total_size = int64(0);
+ $total_size = $total; $current_total_size = 0;
$o->{install_start_time} = 0;
mygtk3::gtkadd($pkg_log_widget, text => P("%d package", "%d packages", $nb, $nb));
$w->flush;