- apt-pkg/cdrom.cc: '%lu' expects 'long unsigned int', but argument
authorOtavio Salvador <otavio@ossystems.com.br>
Tue, 2 Oct 2007 12:25:37 +0000 (09:25 -0300)
committerOtavio Salvador <otavio@ossystems.com.br>
Tue, 2 Oct 2007 12:25:37 +0000 (09:25 -0300)
    has type 'size_t';

apt-pkg/cdrom.cc
debian/changelog

index 96106c7..b8f94e5 100644 (file)
@@ -668,8 +668,8 @@ bool pkgCdrom::Add(pkgCdromStatus *log)
    DropRepeats(TransList,"");
    if(log) {
       msg.str("");
-      ioprintf(msg, _("Found %lu package indexes, %lu source indexes, "
-                     "%lu translation indexes and %lu signatures\n"), 
+      ioprintf(msg, _("Found %u package indexes, %u source indexes, "
+                     "%u translation indexes and %u signatures\n"), 
               List.size(), SourceList.size(), TransList.size(),
               SigList.size());
       log->Update(msg.str(), STEP_SCAN);
index 08a6058..61bb751 100644 (file)
@@ -59,6 +59,8 @@ apt (0.7.7) UNRELEASED; urgency=low
   * Fix compilation warnings:
     - apt-pkg/indexfile.cc: conversion from string constant to 'char*';
     - apt-pkg/acquire-item.cc: likewise;
+    - apt-pkg/cdrom.cc: '%lu' expects 'long unsigned int', but argument
+      has type 'size_t';
 
   [ Ian Jackson ]
   * dpkg-triggers: Deal properly with new package states.