aboutsummaryrefslogtreecommitdiff
path: root/lib/memfs/pathnode.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/memfs/pathnode.go')
-rw-r--r--lib/memfs/pathnode.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/memfs/pathnode.go b/lib/memfs/pathnode.go
index f702c01a..df7d6c0f 100644
--- a/lib/memfs/pathnode.go
+++ b/lib/memfs/pathnode.go
@@ -15,8 +15,8 @@ import (
// PathNode contains a mapping between path and Node.
//
type PathNode struct {
- mu sync.Mutex
v map[string]*Node
+ mu sync.Mutex
}
//