summaryrefslogtreecommitdiffstats
path: root/perl-install/install/steps_interactive.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install/steps_interactive.pm')
-rw-r--r--perl-install/install/steps_interactive.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm
index bc9fae579..8cddb5bcf 100644
--- a/perl-install/install/steps_interactive.pm
+++ b/perl-install/install/steps_interactive.pm
@@ -3,6 +3,7 @@ package install::steps_interactive;
use strict;
use feature 'state';
+use Math::Int64 ':native_if_available', 'int64';
our @ISA = qw(install::steps);
@@ -641,7 +642,7 @@ sub beforeInstallPackages {
#------------------------------------------------------------------------------
sub installPackages {
my ($o) = @_;
- my ($current, $total) = (0, 0);
+ my ($current, $total) = (int64(0), 0);
my ($_w, $wait_message) = $o->wait_message_with_progress_bar(N("Installing"));
$wait_message->(N("Preparing installation"), 0, 100); #- beware, interactive::curses::wait_message_with_progress_bar need to create the Dialog::Progress here because in installCallback we are chrooted