]> git.saurik.com Git - apt.git/commitdiff
* make apt -Wall clean
authorMichael Vogt <michael.vogt@ubuntu.com>
Fri, 3 Aug 2007 16:59:39 +0000 (18:59 +0200)
committerMichael Vogt <michael.vogt@ubuntu.com>
Fri, 3 Aug 2007 16:59:39 +0000 (18:59 +0200)
apt-pkg/cdrom.cc
apt-pkg/contrib/configuration.cc
apt-pkg/deb/dpkgpm.cc
apt-pkg/deb/dpkgpm.h
test/pre-upload-check.py

index 4a688a5e1c1a1545383e16f7d04bd8d5be2c462e..96106c7a9eceb283509ba17d0c06def03367cda1 100644 (file)
@@ -668,8 +668,8 @@ bool pkgCdrom::Add(pkgCdromStatus *log)
    DropRepeats(TransList,"");
    if(log) {
       msg.str("");
-      ioprintf(msg, _("Found %i package indexes, %i source indexes, "
-                     "%i translation indexes and %i signatures\n"), 
+      ioprintf(msg, _("Found %lu package indexes, %lu source indexes, "
+                     "%lu translation indexes and %lu signatures\n"), 
               List.size(), SourceList.size(), TransList.size(),
               SigList.size());
       log->Update(msg.str(), STEP_SCAN);
index 3109fd7a58649b1775ec97d01d8807df5d40cb14..7914bd07b5fdcd99519fe11e3f1b94f23bd363ed 100644 (file)
@@ -507,7 +507,7 @@ bool ReadConfigFile(Configuration &Conf,const string &FName,bool AsSectional,
       CurLine++;
       // This should be made to work instead, but this is better than looping
       if (F.fail() && !F.eof())
-         return _error->Error(_("Line %d too long (max %u)"), CurLine, sizeof(Buffer));
+         return _error->Error(_("Line %d too long (max %lu)"), CurLine, sizeof(Buffer));
 
       _strtabexpand(Buffer,sizeof(Buffer));
       _strstrip(Buffer);
index 94215197c4b4530e1fc4cf1aed5d9945b759aeac..168c314836317f9e24787bdcfdb58b78dc4a5a4e 100644 (file)
@@ -43,7 +43,7 @@ using namespace std;
 // ---------------------------------------------------------------------
 /* */
 pkgDPkgPM::pkgDPkgPM(pkgDepCache *Cache) 
-   : pkgPackageManager(Cache), dpkgbuf_pos(0), PackagesTotal(0), PackagesDone(0)
+   : pkgPackageManager(Cache), dpkgbuf_pos(0), PackagesDone(0), PackagesTotal(0)
 {
 }
                                                                        /*}}}*/
@@ -770,9 +770,6 @@ bool pkgDPkgPM::Go(int OutStatusFd)
       int _dpkgin = fd[0];
       close(fd[1]);                        // close the write end of the pipe
 
-      // the read buffers for the communication with dpkg
-      char buf[2] = {0,0};
-      
       // the result of the waitpid call
       int res;
       close(slave);
index c552b20c9bf9c892496050bf352f6aac3888cf9f..065c6c917858a34df92c4a31e6acbfa794318b3b 100644 (file)
@@ -43,10 +43,10 @@ class pkgDPkgPM : public pkgPackageManager
    // the dpkg states that are already done; the string is the package
    // the int is the state that is already done (e.g. a package that is
    // going to be install is already in state "half-installed")
-   map<string,int> PackageOpsDone;
+   map<string,unsigned int> PackageOpsDone;
    // progress reporting
-   int PackagesDone;
-   int PackagesTotal;
+   unsigned int PackagesDone;
+   unsigned int PackagesTotal;
   
    struct Item
    {
index 271d54f226a15d3c32352c67666304b64547bc9b..837a25023552c380249fbf3749f296c549bc3228 100755 (executable)
@@ -110,6 +110,7 @@ class testAptInstall(unittest.TestCase):
                      "installing %s failed (got %s)" % (self.pkg, res))
 
 if __name__ == "__main__":
+    print "Runing simple testsuit on current apt-get and libapt"
     if len(sys.argv) > 1 and sys.argv[1] == "-v":
         stdout = sys.stdout
         stderr = sys.stderr