@@ -26,11 +26,11 @@ #import "macros.h" int _OFString_XMLUnescaping_reference; static OF_INLINE OFString* -parse_numeric_entity(const char *entity, size_t length) +parseNumericEntity(const char *entity, size_t length) { of_unichar_t c; size_t i; char buffer[5]; @@ -133,11 +133,11 @@ else if (entity[0] == '#') { void *pool; OFString *tmp; pool = objc_autoreleasePoolPush(); - tmp = parse_numeric_entity(entity, + tmp = parseNumericEntity(entity, entityLength); if (tmp == nil) @throw [OFInvalidFormatException exception]; @@ -234,11 +234,11 @@ else if (entity[0] == '#') { void *pool; OFString *tmp; pool = objc_autoreleasePoolPush(); - tmp = parse_numeric_entity(entity, + tmp = parseNumericEntity(entity, entityLength); if (tmp == nil) @throw [OFInvalidFormatException exception];