1
0
mirror of https://github.com/nxshock/gwp.git synced 2024-11-27 03:31:02 +05:00

Add space before speed field

This commit is contained in:
nxshock 2022-03-08 18:30:44 +05:00
parent bd74140174
commit 928cd97576

2
gwp.go
View File

@ -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)
}
}