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:
Richard Frith-MacDonald 2000-10-22 06:26:20 +00:00
parent 81613caec7
commit 02c860b6ee

View file

@ -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;
}