[SCM] exiv2 packaging branch, master, updated. debian/0.25-3.1-3734-gdcbc29a

Maximiliano Curia maxy at moszumanska.debian.org
Thu Jul 13 17:36:43 UTC 2017


Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=9567798

The following commit has been merged in the master branch:
commit 9567798283caa83a8e2c13b73147f2c9bf46dfcd
Author: brad <chickb at gmail.com>
Date:   Sat Nov 13 00:15:08 2004 +0000

    Fixed signed warning in debug only code
---
 src/makernote.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/makernote.cpp b/src/makernote.cpp
index c02793b..a2501bb 100644
--- a/src/makernote.cpp
+++ b/src/makernote.cpp
@@ -376,8 +376,8 @@ namespace Exiv2 {
     {
 #ifdef DEBUG_REGISTRY
         std::cerr << "   Matching registry entry \"" << regEntry << "\" (" 
-                  << regEntry.size() << ") with key \"" << key << "\" ("
-                  << key.size() << "): ";
+                  << (int)regEntry.size() << ") with key \"" << key << "\" ("
+                  << (int)key.size() << "): ";
 #endif
         // Todo: make the comparisons case insensitive
 
@@ -385,7 +385,7 @@ namespace Exiv2 {
         // return value - the following algorithm also finds exact matches)
         if (regEntry == key) {
 #ifdef DEBUG_REGISTRY
-            std::cerr << "Exact match (score: " << key.size() + 2 << ")
";
+            std::cerr << "Exact match (score: " << (int)key.size() + 2 << ")
";
 #endif
             return static_cast<int>(key.size()) + 2;
         }

-- 
exiv2 packaging



More information about the pkg-kde-commits mailing list