From 7303e11ff28f920a6277c159aa46f80c007350bb Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Sat, 30 Jul 2016 09:57:50 +0200 Subject: prevent C++ locale number formatting in text APIs (try 2) Followup of b58e2c7c56b1416a343e81f9f80cb1f02c128e25. Still a regression of sorts of 8b79c94af7f7cf2e5e5342294bc6e5a908cacabf. Closes: 832044 --- apt-private/acqprogress.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apt-private/acqprogress.cc') diff --git a/apt-private/acqprogress.cc b/apt-private/acqprogress.cc index c182fa02d..e4bfbd4e5 100644 --- a/apt-private/acqprogress.cc +++ b/apt-private/acqprogress.cc @@ -210,7 +210,7 @@ bool AcqTextStatus::Pulse(pkgAcquire *Owner) // Add in the short description S << " ["; if (I->CurrentItem->Owner->ID != 0) - S << I->CurrentItem->Owner->ID << " "; + S << std::to_string(I->CurrentItem->Owner->ID) << " "; S << I->CurrentItem->ShortDesc; // Show the short mode string @@ -220,7 +220,7 @@ bool AcqTextStatus::Pulse(pkgAcquire *Owner) enum {Long = 0,Medium,Short} Mode = Medium; // Add the current progress if (Mode == Long) - S << " " << I->CurrentSize; + S << " " << std::to_string(I->CurrentSize); else { if (Mode == Medium || I->TotalSize == 0) -- cgit v1.2.3