mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +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
e549f7dd9f
commit
33620c771d
2 changed files with 8 additions and 4 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue