1
0
Fork 0
mirror of https://github.com/vbatts/dedupe-linker.git synced 2025-08-02 15:30:28 +00:00

*: fixup and go vet

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2016-09-08 10:48:40 -04:00
parent 2dadf80440
commit 71720092db
Signed by: vbatts
GPG key ID: 10937E57733F1362
4 changed files with 4 additions and 5 deletions

View file

@ -9,10 +9,10 @@ type Walker struct {
}
func (w Walker) Walk(path string, quit chan int) error {
// XXX what is going on here?
select {
case <-quit:
return nil
close(quit)
}
return nil
}