Bug fix - method description was crashing because of typo - %@ was used

instead of %s to print a (char *)


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/branches/freeze-1_0_0@9517 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2001-04-01 20:33:05 +00:00
parent c734307df7
commit 64441d1b23

View file

@ -165,7 +165,7 @@
size = objc_sizeof_type(objctype);
rep = [NSData dataWithBytes: data length: size];
return [NSString stringWithFormat: @"(%@) %@", objctype, [rep description]];
return [NSString stringWithFormat: @"(%s) %@", objctype, [rep description]];
}
// NSCoding