From a56e099f2a8377e8f468e4786edefd1ea545eb77 Mon Sep 17 00:00:00 2001 From: Josef Vogt <31761359+josvo@users.noreply.github.com> Date: Sat, 1 May 2021 20:20:50 +0200 Subject: [PATCH] Benchmark: Remove superfluous = in printout (#1043) --- cli/command_benchmark_crypto.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/command_benchmark_crypto.go b/cli/command_benchmark_crypto.go index 2a4aa5db8..45abff0ee 100644 --- a/cli/command_benchmark_crypto.go +++ b/cli/command_benchmark_crypto.go @@ -88,7 +88,7 @@ type benchResult struct { } printStdout("-----------------------------------------------------------------\n") - printStdout("Fastest option for this machine is: --block-hash==%s --encryption=%s\n", results[0].hash, results[0].encryption) + printStdout("Fastest option for this machine is: --block-hash=%s --encryption=%s\n", results[0].hash, results[0].encryption) return nil }