From 928cd975766755129d52b4bf7c1f32da32d32993 Mon Sep 17 00:00:00 2001 From: nxshock Date: Tue, 8 Mar 2022 18:30:44 +0500 Subject: [PATCH] Add space before speed field --- gwp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gwp.go b/gwp.go index 38c0225..30539f2 100644 --- a/gwp.go +++ b/gwp.go @@ -113,7 +113,7 @@ func (workerPool *WorkerPool) printProgress() { } if workerPool.ShowSpeed { - fmt.Fprintf(os.Stderr, "Speed: %.2f rps", workerPool.currentSpeed) + fmt.Fprintf(os.Stderr, " Speed: %.2f rps", workerPool.currentSpeed) } }