Explorar o código

* apt-pkg/deb/debsrcrecords.{cc,h}:
- cast correct

Michael Vogt %!s(int64=19) %!d(string=hai) anos
pai
achega
19ec5723ca
Modificáronse 2 ficheiros con 2 adicións e 2 borrados
  1. 1 1
      apt-pkg/deb/debsrcrecords.cc
  2. 1 1
      apt-pkg/deb/debsrcrecords.h

+ 1 - 1
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];
    }
 

+ 1 - 1
apt-pkg/deb/debsrcrecords.h

@@ -27,7 +27,7 @@ class debSrcRecordParser : public pkgSrcRecords::Parser
    char *StaticBinList[400];
    unsigned long iOffset;
    char *Buffer;
-   unsigned long BufSize;
+   unsigned int BufSize;
    
    public: