From ef6c9a6c0134c051c46d711e3f314e97ac12fba4 Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Wed, 7 Dec 2016 23:54:48 +0000 Subject: Force use of int64 for installed package size on i586 (mga#19895) --- perl-install/install/steps_gtk.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'perl-install/install/steps_gtk.pm') diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm index 658954369..f3ae0a705 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -4,6 +4,7 @@ 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); @@ -626,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 = 0; + $total_size = $total; $current_total_size = int64(0); $o->{install_start_time} = 0; mygtk3::gtkadd($pkg_log_widget, text => P("%d package", "%d packages", $nb, $nb)); $w->flush; -- cgit v1.2.1