diff options
Diffstat (limited to 'workers.go')
-rw-r--r-- | workers.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -28,6 +28,7 @@ func cutterQueue(fQueue chan string, workerID int) { return } fpath := <-fQueue - cutOnEqualParts(fpath, segmentSize) + outname := fpathToOutname(fpath) + cutOnEqualParts(fpath, outname, segmentSize) } } |