mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-19 12:01:44 +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
a1aa99475c
commit
96e74933dd
1 changed files with 2 additions and 2 deletions
|
@ -175,10 +175,10 @@ _NSFoundationUncaughtExceptionHandler(NSException *exception)
|
||||||
- (NSString*) description
|
- (NSString*) description
|
||||||
{
|
{
|
||||||
if (e_info)
|
if (e_info)
|
||||||
return [NSString stringWithFormat: "%@ NAME:%@ REASON:%@ INFO:%@",
|
return [NSString stringWithFormat: @"%@ NAME:%@ REASON:%@ INFO:%@",
|
||||||
[super description], e_name, e_reason, e_info];
|
[super description], e_name, e_reason, e_info];
|
||||||
else
|
else
|
||||||
return [NSString stringWithFormat: "%@ NAME:%@ REASON:%@",
|
return [NSString stringWithFormat: @"%@ NAME:%@ REASON:%@",
|
||||||
[super description], e_name, e_reason];
|
[super description], e_name, e_reason];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue