[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:10 UTC 2017
Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=f049f2c
The following commit has been merged in the master branch:
commit f049f2cc485f1a31ce107fcd379e6cf8ad1190a3
Author: Robin Mills <robin at clanmills.com>
Date: Sun Apr 26 07:49:42 2015 +0000
#1066. Fixed compiler warning on MacOS-X 10.6 on ppc. Signed/unsigned mismatch.
---
src/tiffimage.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/tiffimage.cpp b/src/tiffimage.cpp
index de41481..1132d7f 100644
--- a/src/tiffimage.cpp
+++ b/src/tiffimage.cpp
@@ -362,7 +362,7 @@ namespace Exiv2 {
str = std::string(formatted);
}
delete[] formatted;
- } while (ok);
+ } while (ok);
return str;
}
@@ -468,7 +468,7 @@ namespace Exiv2 {
if ( option == kpsBasic || option == kpsXMP ) {
io_->seek(0,BasicIo::beg);
// buffer
- const long bufSize = 32;
+ const size_t bufSize = 32;
DataBuf buf(bufSize);
// read header (we already know for certain that we have a Tiff file)
--
exiv2 packaging
More information about the pkg-kde-commits
mailing list