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:
Richard Frith-MacDonald 1999-05-11 09:43:04 +00:00
parent 76595f8207
commit 6eee760cec

View file

@ -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];
}