[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:49 UTC 2017
Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=609dbe6
The following commit has been merged in the master branch:
commit 609dbe60d3e02cc5efdbcee940580aecc310bfaa
Author: Andreas Huggel <ahuggel at gmx.net>
Date: Sun Aug 13 14:55:39 2006 +0000
Workaround for 64 bit long values (David Cannings)
---
src/ifd.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/ifd.cpp b/src/ifd.cpp
index 0cc9bd8..2bd439d 100644
--- a/src/ifd.cpp
+++ b/src/ifd.cpp
@@ -703,7 +703,7 @@ namespace Exiv2 {
std::ostringstream offset;
if (i->size() > 4) {
offset << " 0x" << std::setw(8) << std::setfill('0')
- << std::hex << std::right << i->offset();
+ << std::hex << std::right << static_cast<int32_t>(i->offset());
}
else {
const byte* data = i->data();
--
exiv2 packaging
More information about the pkg-kde-commits
mailing list