fix incorrect eta value

This commit is contained in:
Mitchell Livingston
2008-04-07 05:00:07 +00:00
parent adbee53efa
commit f34cd7299f
2 changed files with 2 additions and 2 deletions

View File

@@ -54,7 +54,7 @@
convertedSize = size / 1048576.0;
unit = NSLocalizedString(@"MB", "File size - megabytes");
}
else if (size < 1099511627776)
else if (size < 1099511627776.0)
{
convertedSize = size / 1073741824.0;
unit = NSLocalizedString(@"GB", "File size - gigabytes");