Variable was simplified

This commit is contained in:
Alexander 2019-10-29 20:37:52 +02:00
parent 0fb911be5e
commit 382164d73f

View file

@ -50,7 +50,7 @@ protected override void WndProc(ref Message m)
base.WndProc(ref m);
}
static string SizeSuffix(Int64 value)
static string SizeSuffix(long value)
{
if (value < 0) { return "-" + SizeSuffix(-value); }