mirror of
https://github.com/nxshock/gwp.git
synced 2025-07-02 00:23:39 +05:00
Fix buffer usage order
This commit is contained in:
parent
a2986a9485
commit
0d6ffec530
1 changed files with 2 additions and 2 deletions
4
gwp.go
4
gwp.go
|
@ -128,9 +128,9 @@ func (workerPool *WorkerPool) printProgress() {
|
|||
return
|
||||
}
|
||||
|
||||
buf.WriteTo(os.Stderr)
|
||||
|
||||
workerPool.lastProgressMessage = buf.String()
|
||||
|
||||
buf.WriteTo(os.Stderr)
|
||||
}
|
||||
|
||||
// Add sends specified task for execution.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue