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

Maximiliano Curia maxy at moszumanska.debian.org
Thu Jul 13 17:42:31 UTC 2017


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

The following commit has been merged in the master branch:
commit 25b4bf2ce914f0047702a2d66cc3c3f616cf2fef
Author: Robin Mills <robin at clanmills.com>
Date:   Thu Jun 30 05:57:39 2011 +0000

    Added cast to enable compilation with DevStudio VS2003 and VS2005.
---
 src/preview.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/preview.cpp b/src/preview.cpp
index 4e04cf3..2bd66c8 100644
--- a/src/preview.cpp
+++ b/src/preview.cpp
@@ -891,7 +891,7 @@ namespace {
                 bufferPos--;
             }
             for (int bufferPos = 2; bufferPos >= 0 && destPos < destSize; bufferPos--, destPos++) {
-                dest.pData_[destPos] = (buffer >> (bufferPos * 8)) & 0xFF;
+                dest.pData_[destPos] = (Exiv2::byte) (buffer >> (bufferPos * 8)) & 0xFF;
             }
         }
         return dest;

-- 
exiv2 packaging



More information about the pkg-kde-commits mailing list