mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
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:
parent
c734307df7
commit
64441d1b23
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue