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

Maximiliano Curia maxy at moszumanska.debian.org
Thu Jul 13 17:37:40 UTC 2017


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

The following commit has been merged in the master branch:
commit 53a55d55ca9829bcc476d89dfae8017b5eaf9043
Author: Andreas Huggel <ahuggel at gmx.net>
Date:   Fri May 26 19:19:35 2006 +0000

    Fixed MSVC compiler warnings
---
 src/tiffvisitor.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/tiffvisitor.cpp b/src/tiffvisitor.cpp
index a69ed2f..09d2759 100644
--- a/src/tiffvisitor.cpp
+++ b/src/tiffvisitor.cpp
@@ -234,11 +234,11 @@ namespace Exiv2 {
 
         // Only applicable if ifd0 NewSubfileType is Thumbnail/Preview image
         GroupType::const_iterator i = groupType_.find(Group::ifd0);
-        if (i == groupType_.end() || i->second & 1 == 0) return;
+        if (i == groupType_.end() || (i->second & 1) == 0) return;
 
         // Only applicable if subIFD NewSubfileType is Primary image
         i = groupType_.find(object->group());
-        if (i == groupType_.end() || i->second & 1 == 1) return;
+        if (i == groupType_.end() || (i->second & 1) == 1) return;
 
         // Todo: ExifKey should have an appropriate c'tor, it should not be 
         //       necessary to use groupName here

-- 
exiv2 packaging



More information about the pkg-kde-commits mailing list