Commit f7e64903 authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

Drop stray debugging gob.

parent 83a65e89
......@@ -90,7 +90,6 @@ func (me *Inode) FsNode() FsNode {
func (me *Inode) Files(mask uint32) (files []WithFlags) {
me.openFilesMutex.Lock()
defer me.openFilesMutex.Unlock()
log.Println("inod.files:", me.openFiles)
for _, f := range me.openFiles {
if mask == 0 || f.WithFlags.OpenFlags&mask != 0 {
files = append(files, f.WithFlags)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment