Skip to content
Snippets Groups Projects
Commit 5b32b570 authored by Neil Graham's avatar Neil Graham
Browse files

fix for compiler warning; thanks to Jeff Rodriguez for pointing this out

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@174980 13f79535-47bb-0310-9956-ffa450edef68
parent b9a5bd55
No related branches found
No related tags found
No related merge requests found
...@@ -203,7 +203,7 @@ DOMNode * DOMNormalizer::normalizeNode(DOMNode *node) const { ...@@ -203,7 +203,7 @@ DOMNode * DOMNormalizer::normalizeNode(DOMNode *node) const {
else { else {
//this is done in namespace fixup so no need to do it if namespace is on //this is done in namespace fixup so no need to do it if namespace is on
if(attrMap) { if(attrMap) {
for(int i = 0; i < attrMap->getLength(); i++) { for(XMLSize_t i = 0; i < attrMap->getLength(); i++) {
attrMap->item(i)->normalize(); attrMap->item(i)->normalize();
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment