2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-28 22:50:48 +00:00

Remove extra argument

This commit is contained in:
Alexander Neumann 2015-03-08 21:21:31 +01:00
parent ab8b97c4ba
commit b2cce7f051

View File

@ -54,5 +54,5 @@ func WalkTree(server Server, id backend.ID, done chan struct{}, jobCh chan<- Wal
debug.Log("WalkTree", "start on %v", id.Str())
walkTree(server, "", id, done, jobCh)
close(jobCh)
debug.Log("WalkTree", "done", id.Str())
debug.Log("WalkTree", "done")
}