mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-14 10:00:55 +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
f74a94d1b0
commit
c00fd9b00a
1 changed files with 2 additions and 2 deletions
|
@ -3681,7 +3681,7 @@ fatalErrorFunction(void *ctx, const unsigned char *msg, ...)
|
||||||
}
|
}
|
||||||
- (NSString *) description
|
- (NSString *) description
|
||||||
{
|
{
|
||||||
return [NSString_class stringWithFormat: @"NodeSet (count %d)", [self count]];
|
return [NSString_class stringWithFormat: @"NodeSet (count %u)", [self count]];
|
||||||
}
|
}
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
@ -4609,7 +4609,7 @@ static void indentation(unsigned level, NSMutableString *str)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
[str appendFormat: @"<i4>%d</i4>", i];
|
[str appendFormat: @"<i4>%ld</i4>", i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue