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:
rfm 2008-01-21 10:46:41 +00:00
parent ec105d12c3
commit 30046a6cd9

View file

@ -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