Update error message in metainfo.Info.writeFiles
I think it was ripped out of some other code a long time ago.
This commit is contained in:
parent
5ac3e9ae54
commit
a0172f7c6e
|
@ -76,8 +76,8 @@ func (info *Info) writeFiles(w io.Writer, open func(fi FileInfo) (io.ReadCloser,
|
||||||
}
|
}
|
||||||
wn, err := io.CopyN(w, r, fi.Length)
|
wn, err := io.CopyN(w, r, fi.Length)
|
||||||
r.Close()
|
r.Close()
|
||||||
if wn != fi.Length || err != nil {
|
if wn != fi.Length {
|
||||||
return fmt.Errorf("error hashing %v: %s", fi, err)
|
return fmt.Errorf("error copying %v: %s", fi, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
|
|
Loading…
Reference in New Issue