Skip to content

Commit 14088ac

Browse files
committed
fix KB -> GB misspelling
1 parent 697bb4e commit 14088ac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

XvdTool.Streaming/StreamedXvdFile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -870,7 +870,7 @@ static string ToFileSize(ulong size)
870870
if (size < 1024 * 1024 * 1024)
871871
return $"{Math.Round(size / (1024.0 * 1024.0), 2)} MB";
872872

873-
return $"{Math.Round(size / (1024.0 * 1024.0 * 1024.0), 2)} KB";
873+
return $"{Math.Round(size / (1024.0 * 1024.0 * 1024.0), 2)} GB";
874874
}
875875
}
876876

0 commit comments

Comments
 (0)