mirror of https://github.com/restic/restic.git
Remove stray Printf from internal/fs
This commit is contained in:
parent
59b343a9bf
commit
95ebba85ff
|
@ -1,7 +1,6 @@
|
|||
package fs
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"io"
|
||||
"os"
|
||||
"path"
|
||||
|
@ -208,7 +207,6 @@ func (r *readerFile) Read(p []byte) (int, error) {
|
|||
|
||||
// return an error if we did not read any data
|
||||
if err == io.EOF && !r.AllowEmptyFile && !r.bytesRead {
|
||||
fmt.Printf("reader: %d bytes read, err %v, bytesRead %v, allowEmpty %v\n", n, err, r.bytesRead, r.AllowEmptyFile)
|
||||
return n, &os.PathError{
|
||||
Path: r.fakeFile.name,
|
||||
Op: "read",
|
||||
|
|
Loading…
Reference in New Issue