diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:53:32 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:53:32 +0000 |
commit | f40e3a64fbfd692a783fe4442ff0efcd5a9b3a8e (patch) | |
tree | f2d17cfe01850d0248f8675cf7f320085ac875f6 /cmdline | |
parent | 02f000a9c4dfeac88e14190c3a88dc1214abaa52 (diff) |
Fixed sparc compile warnings and added -arch build dirs
Author: jgg
Date: 1999-04-15 02:43:47 GMT
Fixed sparc compile warnings and added -arch build dirs
Diffstat (limited to 'cmdline')
-rw-r--r-- | cmdline/acqprogress.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cmdline/acqprogress.cc b/cmdline/acqprogress.cc index 485679c1d..89a8280c8 100644 --- a/cmdline/acqprogress.cc +++ b/cmdline/acqprogress.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: acqprogress.cc,v 1.11 1999/03/16 00:43:55 jgg Exp $ +// $Id: acqprogress.cc,v 1.12 1999/04/15 02:43:48 jgg Exp $ /* ###################################################################### Acquire Progress - Command line progress meter @@ -170,7 +170,7 @@ void AcqTextStatus::Pulse(pkgAcquire *Owner) // Add in the short description if (I->CurrentItem->Owner->ID != 0) - snprintf(S,End-S," [%x %s",I->CurrentItem->Owner->ID, + snprintf(S,End-S," [%lx %s",I->CurrentItem->Owner->ID, I->CurrentItem->ShortDesc.c_str()); else snprintf(S,End-S," [%s",I->CurrentItem->ShortDesc.c_str()); @@ -185,7 +185,7 @@ void AcqTextStatus::Pulse(pkgAcquire *Owner) // Add the current progress if (Mode == Long) - snprintf(S,End-S," %u",I->CurrentSize); + snprintf(S,End-S," %lu",I->CurrentSize); else { if (Mode == Medium || I->TotalSize == 0) @@ -197,10 +197,10 @@ void AcqTextStatus::Pulse(pkgAcquire *Owner) if (I->TotalSize > 0 && I->CurrentItem->Owner->Complete == false) { if (Mode == Short) - snprintf(S,End-S," %u%%", + snprintf(S,End-S," %lu%%", long(double(I->CurrentSize*100.0)/double(I->TotalSize))); else - snprintf(S,End-S,"/%sb %u%%",SizeToStr(I->TotalSize).c_str(), + snprintf(S,End-S,"/%sb %lu%%",SizeToStr(I->TotalSize).c_str(), long(double(I->CurrentSize*100.0)/double(I->TotalSize))); } S += strlen(S); |