From 382164d73f247b64e7d856134c1a887e1e5d6168 Mon Sep 17 00:00:00 2001 From: Alexander Date: Tue, 29 Oct 2019 20:37:52 +0200 Subject: [PATCH] Variable was simplified --- Crypto Notepad/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Crypto Notepad/MainForm.cs b/Crypto Notepad/MainForm.cs index ee524f9..59d21b2 100644 --- a/Crypto Notepad/MainForm.cs +++ b/Crypto Notepad/MainForm.cs @@ -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); }