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

Maximiliano Curia maxy at moszumanska.debian.org
Thu Jul 13 17:47:14 UTC 2017


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

The following commit has been merged in the master branch:
commit e7229f4ea570891e72b5ef75a0cfc8467f3613e5
Author: Robin Mills <robin at clanmills.com>
Date:   Fri Oct 21 16:06:48 2016 +0000

    #855  Remove compiler signed/unsigned warning.
---
 src/tags.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/tags.cpp b/src/tags.cpp
index 11a53e5..4d1ed4b 100644
--- a/src/tags.cpp
+++ b/src/tags.cpp
@@ -2686,7 +2686,7 @@ namespace Exiv2 {
     {
         Rational bias = value.toRational();
 
-        if (bias.first == 0 || bias.first == 0x80000000 ) {
+        if (bias.first == 0 || bias.first == (int32_t)0x80000000 ) {
             os << "0 EV";
         } else if (bias.second <= 0) {
             os << "(" << bias.first << "/" << bias.second << ")";

-- 
exiv2 packaging



More information about the pkg-kde-commits mailing list