summaryrefslogtreecommitdiff
path: root/cmdline
diff options
context:
space:
mode:
authorDavid Kalnischkies <kalnischkies@gmail.com>2011-07-14 15:54:25 +0200
committerDavid Kalnischkies <kalnischkies@gmail.com>2011-07-14 15:54:25 +0200
commitdbbc549457825d5b6507fdd62bcf323ed3a3fb2a (patch)
tree9a92155f1066bf4ad177537a90279b3f85a2ed04 /cmdline
parentd4cfaed3d822b207f24ce11768ee14682a0c8f6b (diff)
replace the last standing double's with long long
Diffstat (limited to 'cmdline')
-rw-r--r--cmdline/acqprogress.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdline/acqprogress.cc b/cmdline/acqprogress.cc
index ba334ce05..d2db949ea 100644
--- a/cmdline/acqprogress.cc
+++ b/cmdline/acqprogress.cc
@@ -200,7 +200,7 @@ bool AcqTextStatus::Pulse(pkgAcquire *Owner)
// Add the current progress
if (Mode == Long)
- snprintf(S,End-S," %lu",I->CurrentSize);
+ snprintf(S,End-S," %llu",I->CurrentSize);
else
{
if (Mode == Medium || I->TotalSize == 0)