mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Fix stringForObjectValue per fred's suggestion
This commit is contained in:
parent
ced9f127e9
commit
32052dfdc0
1 changed files with 1 additions and 2 deletions
|
@ -70,8 +70,7 @@ GS_PRIVATE_INTERNAL(NSByteCountFormatter)
|
|||
- (NSString *)stringForObjectValue: (id)obj
|
||||
{
|
||||
long long byteCount = [obj longLongValue];
|
||||
return [[self class] stringFromByteCount: byteCount
|
||||
countStyle: NSByteCountFormatterUseDefault];
|
||||
return [self stringFromByteCount: byteCount];
|
||||
}
|
||||
|
||||
- (NSByteCountFormatterUnits) _adaptiveSettings: (double)byteCount
|
||||
|
|
Loading…
Reference in a new issue