@@ -46,11 +46,11 @@ #import "autorelease.h" #import "macros.h" static OF_INLINE void -normalize_key(char *str_) +normalizeKey(char *str_) { uint8_t *str = (uint8_t*)str_; bool firstLetter = true; while (*str != '\0') { @@ -491,11 +491,11 @@ @throw [OFOutOfMemoryException exceptionWithRequestedSize: tmp - lineC + 1]; memcpy(keyC, lineC, tmp - lineC); keyC[tmp - lineC] = '\0'; - normalize_key(keyC); + normalizeKey(keyC); @try { key = [OFString stringWithUTF8StringNoCopy: keyC freeWhenDone: true]; } @catch (id e) {