From c00fd9b00a0dd45e01865d98cb02aa36b33e6501 Mon Sep 17 00:00:00 2001 From: Richard Frith-MacDonald Date: Mon, 21 Jan 2008 10:46:41 +0000 Subject: [PATCH] Iminor printf format fixes git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@25988 72102866-910b-0410-8b05-ffd578937521 --- Source/Additions/GSXML.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Additions/GSXML.m b/Source/Additions/GSXML.m index 3e802d6fa..d2daecf35 100644 --- a/Source/Additions/GSXML.m +++ b/Source/Additions/GSXML.m @@ -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: @"%d", i]; + [str appendFormat: @"%ld", i]; } } else