Просмотр исходного кода

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

Michael Vogt лет назад: 19
Родитель
Сommit
19ec5723ca
2 измененных файлов с 2 добавлено и 2 удалено
  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: