summaryrefslogtreecommitdiff
path: root/apt-pkg/deb/debsrcrecords.cc
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-12-01 17:03:43 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2006-12-01 17:03:43 +0100
commit19ec5723caa6ea6ab196a9e960c769ded4ee0d28 (patch)
treecaa934f1220c18edf543e49bf4b4ea038f1b54da /apt-pkg/deb/debsrcrecords.cc
parentf88137b8972f57c52bbadf54a80932f225562a95 (diff)
* apt-pkg/deb/debsrcrecords.{cc,h}:
- cast correct
Diffstat (limited to 'apt-pkg/deb/debsrcrecords.cc')
-rw-r--r--apt-pkg/deb/debsrcrecords.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/deb/debsrcrecords.cc b/apt-pkg/deb/debsrcrecords.cc
index e1c6427e8..7d5dab747 100644
--- a/apt-pkg/deb/debsrcrecords.cc
+++ b/apt-pkg/deb/debsrcrecords.cc
@@ -40,7 +40,7 @@ const char **debSrcRecordParser::Binaries()
{
delete [] Buffer;
// allocate new size based on buffer (but never smaller than 4000)
- BufSize = max((unsigned long)4000, max(Bins.length()+1,2*BufSize));
+ BufSize = max((unsigned int)4000, max((unsigned int)Bins.length()+1,2*BufSize));
Buffer = new char[BufSize];
}