fusefrontend: Fix order of arguments in debug message for Read() FUSE call.

This commit is contained in:
Sebastian Lackner 2018-12-31 17:48:34 +01:00 committed by rfjakob
parent 87ced5f95d
commit 9ed60678e5
1 changed files with 1 additions and 1 deletions

View File

@ -243,7 +243,7 @@ func (f *File) Read(buf []byte, off int64) (resultData fuse.ReadResult, code fus
f.fileTableEntry.ContentLock.RLock()
defer f.fileTableEntry.ContentLock.RUnlock()
tlog.Debug.Printf("ino%d: FUSE Read: offset=%d length=%d", f.qIno.Ino, len(buf), off)
tlog.Debug.Printf("ino%d: FUSE Read: offset=%d length=%d", f.qIno.Ino, off, len(buf))
if f.fs.args.SerializeReads {
serialize_reads.Wait(off, len(buf))
}