mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 17:10:48 +00:00
indentation fixes
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32780 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b1b5714169
commit
ed0d634335
1 changed files with 7 additions and 6 deletions
|
@ -835,6 +835,7 @@ failure:
|
|||
- (BOOL) isEqualToData: (NSData*)other
|
||||
{
|
||||
NSUInteger len;
|
||||
|
||||
if (other == self)
|
||||
{
|
||||
return YES;
|
||||
|
@ -1869,18 +1870,18 @@ failure:
|
|||
if ([aCoder allowsKeyedCoding])
|
||||
{
|
||||
[aCoder encodeBytes: bytes
|
||||
length: length
|
||||
forKey:@"NS.data"];
|
||||
length: length
|
||||
forKey: @"NS.data"];
|
||||
}
|
||||
else
|
||||
{
|
||||
[aCoder encodeValueOfObjCType: @encode(unsigned int)
|
||||
at: &length];
|
||||
at: &length];
|
||||
if (length)
|
||||
{
|
||||
[aCoder encodeArrayOfObjCType: @encode(unsigned char)
|
||||
count: length
|
||||
at: bytes];
|
||||
count: length
|
||||
at: bytes];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1900,7 +1901,7 @@ failure:
|
|||
{
|
||||
if ([aCoder allowsKeyedCoding])
|
||||
{
|
||||
const uint8_t *data;
|
||||
const uint8_t *data;
|
||||
NSUInteger l;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue