@@ -2448,14 +2448,14 @@ #else /* * If we have no strtof_l, we have no other choice but to replace "." * with the locale's decimal point. */ - OFString *decimalPoint = [OFLocale decimalPoint]; + OFString *decimalSeparator = [OFLocale decimalSeparator]; const char *UTF8String = [self stringByReplacingOccurrencesOfString: @"." - withString: decimalPoint].UTF8String; + withString: decimalSeparator].UTF8String; #endif char *endPtr = NULL; float value; errno = 0; @@ -2501,14 +2501,14 @@ #else /* * If we have no strtod_l, we have no other choice but to replace "." * with the locale's decimal point. */ - OFString *decimalPoint = [OFLocale decimalPoint]; + OFString *decimalSeparator = [OFLocale decimalSeparator]; const char *UTF8String = [self stringByReplacingOccurrencesOfString: @"." - withString: decimalPoint].UTF8String; + withString: decimalSeparator].UTF8String; #endif char *endPtr = NULL; double value; errno = 0;