fix printf format

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/ec/trunk@36478 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2013-04-06 09:25:31 +00:00
parent e5fe440516
commit 24b10a2b9b

View file

@ -1832,13 +1832,13 @@ static NSString* cmdWord(NSArray* a, unsigned int pos)
if (ti >= 3600.0)
{
message = [message stringByAppendingFormat:
@"%@\nNot cleared after %d hours!",
@"\nNot cleared after %d hours!",
(int)(ti / 3600.0)];
}
else
{
message = [message stringByAppendingFormat:
@"%@\nNot cleared after %d minutes.",
@"\nNot cleared after %d minutes.",
(int)(ti / 60.0)];
}
}