@@ -308,12 +308,12 @@ - (void)appendCharacters: (of_unichar_t*)characters length: (size_t)length { void *pool = objc_autoreleasePoolPush(); - return [self appendString: [OFString stringWithCharacters: characters - length: length]]; + [self appendString: [OFString stringWithCharacters: characters + length: length]]; objc_autoreleasePoolPop(pool); } - (void)appendUTF8String: (const char*)UTF8String