lib9p

Go 9P library.
Log | Files | Refs

commit 9ead9332ed49f0cf63b76750c13fbe9574174921
parent a2227797d6f22c5f3aa80284b6b982d886413041
Author: Matsuda Kenji <info@mtkn.jp>
Date:   Wed, 13 Sep 2023 11:15:12 +0900

delete debugging info

Diffstat:
Mdiskfs/file.go | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/diskfs/file.go b/diskfs/file.go @@ -212,7 +212,6 @@ func (f *File) Create(name string, uid string, } ospath := path.Join(f.fs.rootPath, f.path, name) - fmt.Printf("pathname: %s\n", ospath) osfile, err := os.Create(ospath) if err != nil { return nil, fmt.Errorf("create: %v", err)