[SCM] exiv2 packaging branch, master, updated. debian/0.25-3.1-3734-gdcbc29a
Maximiliano Curia
maxy at moszumanska.debian.org
Thu Jul 13 17:40:54 UTC 2017
Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=0163a4d
The following commit has been merged in the master branch:
commit 0163a4d72f2616444cac3dfd0c9a1c2bf2d16e9e
Author: Andreas Huggel <ahuggel at gmx.net>
Date: Sat Nov 28 14:09:28 2009 +0000
Fixed compiler warning (i686-apple-darwin9-g++-4.0.1).
---
xmpsdk/src/XML_Node.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/xmpsdk/src/XML_Node.cpp b/xmpsdk/src/XML_Node.cpp
index 8f76d0f..740f82f 100644
--- a/xmpsdk/src/XML_Node.cpp
+++ b/xmpsdk/src/XML_Node.cpp
@@ -214,7 +214,7 @@ static void DumpNodeList ( std::string * buffer, const XML_NodeVector & list, in
if ( node->nsPrefixLen != 0 ) {
*buffer += ", prefixLen=";
char numBuf [20];
- snprintf ( numBuf, sizeof(numBuf), "%d", node->nsPrefixLen );
+ snprintf ( numBuf, sizeof(numBuf), "%lu", (unsigned long)node->nsPrefixLen );
*buffer += numBuf;
}
*buffer += "
";
--
exiv2 packaging
More information about the pkg-kde-commits
mailing list