Index: src/OFXMLParser.m ================================================================== --- src/OFXMLParser.m +++ src/OFXMLParser.m @@ -69,12 +69,12 @@ return nil; } static OF_INLINE void -resolve_attribute_namespace(OFXMLAttribute *attribute, OFString *prefix, - OFString *ns, OFArray *namespaces, Class isa) +resolve_attribute_namespace(OFXMLAttribute *attribute, OFArray *namespaces, + Class isa) { OFString *attributeNS; OFString *attributePrefix = attribute->ns; if (attributePrefix == nil) @@ -672,12 +672,12 @@ if (prefix != nil && ns == nil) @throw [OFUnboundNamespaceException newWithClass: isa prefix: prefix]; for (j = 0; j < attributesCount; j++) - resolve_attribute_namespace(attributesCArray[j], prefix, ns, - namespaces, isa); + resolve_attribute_namespace(attributesCArray[j], namespaces, + isa); pool = [[OFAutoreleasePool alloc] init]; #if defined(OF_HAVE_PROPERTIES) && defined(OF_HAVE_BLOCKS) if (elementStartHandler != NULL)