mirror of
https://github.com/gnustep/libs-ec.git
synced 2025-02-22 03:11:16 +00:00
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:
parent
e5fe440516
commit
24b10a2b9b
1 changed files with 2 additions and 2 deletions
|
@ -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)];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue