([MallocAddress +autoreleaseMallocAddress:]): Fix typo in method name.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1284 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-03-29 04:01:33 +00:00
parent 07a8527760
commit 15f0c95e86

View file

@ -35,7 +35,7 @@ static NSMapTable* mallocAddresses;
{
mallocAddresses =
NSCreateMapTable (NSNonOwnedPointerMapKeyCallBacks,
NSNonRetainedObjectMapValueCallBacks, 0);
NSNonOwnedPointerMapValueCallBacks, 0);
}
}
@ -44,7 +44,7 @@ static NSMapTable* mallocAddresses;
return NSMapGet (mallocAddresses, addr);
}
+ autoreleaseMallocAddresss: (void*)addr
+ autoreleaseMallocAddress: (void*)addr
{
id n = [[self alloc] initWithAddress:addr];
NSMapInsert (mallocAddresses, addr, n);