mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
minor OSX compatibility tweak
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@31847 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a4a57e144f
commit
e1dbeb420e
2 changed files with 8 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
|||
2011-01-07 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSObject.m: Make zombie log message match current OSX.
|
||||
|
||||
2011-01-06 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/NSObject.m (GSAtomicIncrement, GSAtomicDecrement): MIPS64
|
||||
|
|
|
@ -156,13 +156,13 @@ static void GSLogZombie(id o, SEL sel)
|
|||
}
|
||||
if (c == 0)
|
||||
{
|
||||
NSLog(@"Deallocated object (%p) sent %@",
|
||||
o, NSStringFromSelector(sel));
|
||||
NSLog(@"*** -[??? %@]: message sent to deallocated instance %p",
|
||||
NSStringFromSelector(sel), o);
|
||||
}
|
||||
else
|
||||
{
|
||||
NSLog(@"Deallocated %@ (%p) sent %@",
|
||||
c, o, NSStringFromSelector(sel));
|
||||
NSLog(@"*** -[%@ %@]: message sent to deallocated instance %p",
|
||||
c, NSStringFromSelector(sel), o);
|
||||
}
|
||||
if (GSPrivateEnvironmentFlag("CRASH_ON_ZOMBIE", NO) == YES)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue