mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Iminor printf format fixes
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@25988 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ec105d12c3
commit
30046a6cd9
1 changed files with 2 additions and 2 deletions
|
@ -3681,7 +3681,7 @@ fatalErrorFunction(void *ctx, const unsigned char *msg, ...)
|
|||
}
|
||||
- (NSString *) description
|
||||
{
|
||||
return [NSString_class stringWithFormat: @"NodeSet (count %d)", [self count]];
|
||||
return [NSString_class stringWithFormat: @"NodeSet (count %u)", [self count]];
|
||||
}
|
||||
@end
|
||||
|
||||
|
@ -4609,7 +4609,7 @@ static void indentation(unsigned level, NSMutableString *str)
|
|||
}
|
||||
else
|
||||
{
|
||||
[str appendFormat: @"<i4>%d</i4>", i];
|
||||
[str appendFormat: @"<i4>%ld</i4>", i];
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue