From: Arch Librarian Date: Mon, 20 Sep 2004 16:53:36 +0000 (+0000) Subject: Fixed percent overflow bug X-Git-Tag: 0.7.24ubuntu1~1379 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/b80d5b89446d8d4818a07690c395d1d20b82ba7f Fixed percent overflow bug Author: jgg Date: 1999-04-18 07:25:32 GMT Fixed percent overflow bug --- diff --git a/apt-pkg/pkgcachegen.cc b/apt-pkg/pkgcachegen.cc index ee65c94d1..1e31ff300 100644 --- a/apt-pkg/pkgcachegen.cc +++ b/apt-pkg/pkgcachegen.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: pkgcachegen.cc,v 1.35 1999/04/18 06:36:36 jgg Exp $ +// $Id: pkgcachegen.cc,v 1.36 1999/04/18 07:25:32 jgg Exp $ /* ###################################################################### Package Cache Generator - Generator for the cache structure. @@ -623,7 +623,7 @@ static bool pkgMergeStatus(OpProgress &Progress,pkgCacheGenerator &Gen, /* This puts the source package cache into the given generator. */ bool pkgGenerateSrcCache(pkgSourceList &List,OpProgress &Progress, pkgCacheGenerator &Gen, - unsigned long &CurrentSize,unsigned long TotalSize) + unsigned long &CurrentSize,unsigned long &TotalSize) { string ListDir = _config->FindDir("Dir::State::lists");