winefile: Remove redundant check in format_bytes().

oldstable
Gerald Pfeifer 2013-10-15 22:34:59 +02:00 committed by Alexandre Julliard
parent f81c2e1caf
commit f039251991
1 changed files with 1 additions and 1 deletions

View File

@ -2658,7 +2658,7 @@ static void format_bytes(LPWSTR buffer, LONGLONG bytes)
fBytes = ((float)bytes)/1048576.f+.5f;
resid = IDS_UNIT_MB;
}
else if (bytes >= 1024) /* 1 kB */
else /* bytes >= 1024 */ /* 1 kB */
{
fBytes = ((float)bytes)/1024.f+.5f;
resid = IDS_UNIT_KB;