diff options
author | Stef Walter <stefw@redhat.com> | 2013-04-18 22:11:33 +0200 |
---|---|---|
committer | Stef Walter <stefw@redhat.com> | 2013-04-19 08:05:04 +0200 |
commit | 9fc8444f2c4aca8a551f1300d734742b7d99be00 (patch) | |
tree | ce7a192feea559e1b2351bc5ac56b80e804b734b /src/xmlfixups.cpp | |
parent | 22bfb1beeb9c7fbcdc814798d361e28b3b81f971 (diff) |
Diffstat (limited to 'src/xmlfixups.cpp')
-rw-r--r-- | src/xmlfixups.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmlfixups.cpp b/src/xmlfixups.cpp index 16b4b35..6ea8933 100644 --- a/src/xmlfixups.cpp +++ b/src/xmlfixups.cpp @@ -453,7 +453,7 @@ void XmlFixups::runPassTwo(const DOM::Document& doc) // Mark each node as we've seen it so we don't // do a given element twice - if((int)el.getUserData() == PASS_TWO) + if((int)(unsigned long)el.getUserData() == PASS_TWO) continue; el.setUserData((void*)PASS_TWO); |