Skip to content

Commit

Permalink
fix KB -> GB misspelling
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeFZ committed Aug 4, 2024
1 parent 697bb4e commit 14088ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion XvdTool.Streaming/StreamedXvdFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -870,7 +870,7 @@ static string ToFileSize(ulong size)
if (size < 1024 * 1024 * 1024)
return $"{Math.Round(size / (1024.0 * 1024.0), 2)} MB";

return $"{Math.Round(size / (1024.0 * 1024.0 * 1024.0), 2)} KB";
return $"{Math.Round(size / (1024.0 * 1024.0 * 1024.0), 2)} GB";
}
}

Expand Down

0 comments on commit 14088ac

Please sign in to comment.