From: Arch Librarian Date: Mon, 20 Sep 2004 16:51:28 +0000 (+0000) Subject: Fixed signed conversion X-Git-Tag: 0.7.24ubuntu1~1632 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/7a658e661330d4832acdf221966f351408f99b0f Fixed signed conversion Author: jgg Date: 1998-11-13 23:20:06 GMT Fixed signed conversion --- diff --git a/apt-pkg/depcache.cc b/apt-pkg/depcache.cc index 68c452f31..db1cdad62 100644 --- a/apt-pkg/depcache.cc +++ b/apt-pkg/depcache.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: depcache.cc,v 1.4 1998/10/24 04:58:05 jgg Exp $ +// $Id: depcache.cc,v 1.5 1998/11/13 23:20:06 jgg Exp $ /* ###################################################################### Dependency Cache - Caches Dependency information. @@ -219,8 +219,8 @@ void pkgDepCache::AddSizes(const PkgIterator &Pkg,long Mult) if (Pkg->CurrentVer != 0 && P.InstallVer != (Version *)Pkg.CurrentVer() && P.InstallVer != 0) { - iUsrSize += Mult*(P.InstVerIter(*this)->InstalledSize - - Pkg.CurrentVer()->InstalledSize); + iUsrSize += Mult*((signed)P.InstVerIter(*this)->InstalledSize - + (signed)Pkg.CurrentVer()->InstalledSize); iDownloadSize += Mult*P.InstVerIter(*this)->Size; }