Commit f0392519 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

winefile: Remove redundant check in format_bytes().

parent f81c2e1c
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment