more trivial type changes

This commit is contained in:
Mitchell Livingston
2008-10-28 00:08:49 +00:00
parent 8a5697d1a0
commit 6bc269d2bc
11 changed files with 63 additions and 63 deletions

View File

@@ -47,7 +47,7 @@
NSString * unit;
if (size < pow(1024, 2))
{
convertedSize = size / 1024.0;
convertedSize = size / 1024.0f;
unit = NSLocalizedString(@"KB", "File size - kilobytes");
}
else if (size < pow(1024, 3))