summaryrefslogtreecommitdiff
path: root/source/common/XML_Node.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/common/XML_Node.cpp')
-rw-r--r--source/common/XML_Node.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/common/XML_Node.cpp b/source/common/XML_Node.cpp
index 9163fff..29854b4 100644
--- a/source/common/XML_Node.cpp
+++ b/source/common/XML_Node.cpp
@@ -1,5 +1,5 @@
// =================================================================================================
-// Copyright 2005-2007 Adobe Systems Incorporated
+// Copyright 2007 Adobe Systems Incorporated
// All Rights Reserved.
//
// NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the terms
@@ -212,7 +212,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), "%d", (int)node->nsPrefixLen );
*buffer += numBuf;
}
*buffer += "\n";