diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:53:36 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:53:36 +0000 |
commit | b80d5b89446d8d4818a07690c395d1d20b82ba7f (patch) | |
tree | d18e4557e62405b424c704ebe2e005b6f57c59de /apt-pkg | |
parent | cf6371d0527946c16d7be3b907f6dabf9a49f23b (diff) |
Fixed percent overflow bug
Author: jgg
Date: 1999-04-18 07:25:32 GMT
Fixed percent overflow bug
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/pkgcachegen.cc | 4 |
1 files changed, 2 insertions, 2 deletions
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"); |