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

Maximiliano Curia maxy at moszumanska.debian.org
Thu Jul 13 17:45:02 UTC 2017


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

The following commit has been merged in the master branch:
commit be1649e1ee1054aa6d0d1052aad5fe89ef3bc5ce
Author: Robin Mills <robin at clanmills.com>
Date:   Fri Apr 10 17:48:24 2015 +0000

    #774.  Fix MSVC compiler warning.
---
 src/xmpsidecar.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/xmpsidecar.cpp b/src/xmpsidecar.cpp
index 77c9b79..ff89534 100644
--- a/src/xmpsidecar.cpp
+++ b/src/xmpsidecar.cpp
@@ -48,7 +48,7 @@ EXIV2_RCSID("@(#) $Id$")
 // *****************************************************************************
 namespace {
     const char* xmlHeader = "<?xpacket begin=\"\xef\xbb\xbf\" id=\"W5M0MpCehiHzreSzNTczkc9d\"?>
";
-    const long  xmlHdrCnt = std::strlen(xmlHeader); // without the trailing 0-character
+    const long  xmlHdrCnt = (long) std::strlen(xmlHeader); // without the trailing 0-character
     const char* xmlFooter = "<?xpacket end=\"w\"?>";
 }
 

-- 
exiv2 packaging



More information about the pkg-kde-commits mailing list