mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Fixed bug generating exception description.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@4238 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
76595f8207
commit
6eee760cec
1 changed files with 2 additions and 2 deletions
|
@ -175,10 +175,10 @@ _NSFoundationUncaughtExceptionHandler(NSException *exception)
|
|||
- (NSString*) description
|
||||
{
|
||||
if (e_info)
|
||||
return [NSString stringWithFormat: "%@ NAME:%@ REASON:%@ INFO:%@",
|
||||
return [NSString stringWithFormat: @"%@ NAME:%@ REASON:%@ INFO:%@",
|
||||
[super description], e_name, e_reason, e_info];
|
||||
else
|
||||
return [NSString stringWithFormat: "%@ NAME:%@ REASON:%@",
|
||||
return [NSString stringWithFormat: @"%@ NAME:%@ REASON:%@",
|
||||
[super description], e_name, e_reason];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue