mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
printf style format tweaks
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@36799 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
be2e93e98e
commit
bddd1e734f
14 changed files with 33 additions and 30 deletions
|
@ -1835,7 +1835,8 @@ static id gs_weak_load(id obj)
|
|||
[NSException
|
||||
raise: NSGenericException
|
||||
format: @"Autorelease would release object too many times.\n"
|
||||
@"%d release(s) versus %d retain(s)", release_count, retain_count];
|
||||
@"%"PRIuPTR" release(s) versus %"PRIuPTR" retain(s)",
|
||||
release_count, retain_count];
|
||||
}
|
||||
|
||||
(*autorelease_imp)(autorelease_class, autorelease_sel, self);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue