@@ -97,11 +97,11 @@ } static OFString* namespaceForPrefix(OFString *prefix, OFArray *namespaces) { - OFDictionary **objects = [namespaces objects]; + OFDictionary *const *objects = [namespaces objects]; ssize_t i; if (prefix == nil) prefix = @""; @@ -698,11 +698,11 @@ /* Inside a tag, name found */ - (void)OF_inTagState { void *pool; OFString *namespace; - OFXMLAttribute **attributesObjects; + OFXMLAttribute *const *attributesObjects; size_t j, attributesCount; if (_data[_i] != '>' && _data[_i] != '/') { if (_data[_i] != ' ' && _data[_i] != '\t' && _data[_i] != '\n' && _data[_i] != '\r') {