mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Commit correct version
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@7883 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
81613caec7
commit
02c860b6ee
1 changed files with 2 additions and 2 deletions
|
@ -44,7 +44,7 @@ static NSNull *null = 0;
|
|||
{
|
||||
if (null == 0)
|
||||
{
|
||||
null = NSAllocateObject(self, 0, NSDefaultMallocZone());
|
||||
null = (NSNull*)NSAllocateObject(self, 0, NSDefaultMallocZone());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -84,7 +84,7 @@ static NSNull *null = 0;
|
|||
- (BOOL) isEqual: (id)other
|
||||
{
|
||||
if (other == self)
|
||||
return YES
|
||||
return YES;
|
||||
else
|
||||
return NO;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue