mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Fixup bad report of selector in an exception in runloop
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@39023 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
91d3484e9b
commit
ac53087213
2 changed files with 4 additions and 4 deletions
|
@ -113,9 +113,9 @@ static NSDate *theFuture = nil;
|
|||
{
|
||||
NSLog(@"*** NSRunLoop ignoring exception '%@' (reason '%@') "
|
||||
@"raised during performSelector... with target %p "
|
||||
@"and selector '%@'",
|
||||
@"and selector '%s'",
|
||||
[localException name], [localException reason], target,
|
||||
NSStringFromSelector([target selector]));
|
||||
sel_getName(selector));
|
||||
}
|
||||
NS_ENDHANDLER
|
||||
}
|
||||
|
|
|
@ -1335,9 +1335,9 @@ GSRunLoopInfoForThread(NSThread *aThread)
|
|||
{
|
||||
NSLog(@"*** NSRunLoop ignoring exception '%@' (reason '%@') "
|
||||
@"raised during perform in other thread... with receiver %p "
|
||||
@"and selector '%@'",
|
||||
@"and selector '%s'",
|
||||
[localException name], [localException reason], receiver,
|
||||
NSStringFromSelector(selector));
|
||||
sel_getName(selector));
|
||||
}
|
||||
}
|
||||
NS_ENDHANDLER
|
||||
|
|
Loading…
Reference in a new issue