From c44dffc34ee1de172d36635f8b8fa0dc73597740 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Mon, 2 Mar 2015 15:20:29 +1100 Subject: [PATCH] Added a stub for inode.Attributes. --- samples/memfs/inode.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/samples/memfs/inode.go b/samples/memfs/inode.go index 81226db..ce66cb7 100644 --- a/samples/memfs/inode.go +++ b/samples/memfs/inode.go @@ -34,4 +34,6 @@ func (inode *inode) checkInvariants() { } } -func (inode *inode) Attributes() fuse.InodeAttributes +func (inode *inode) Attributes() fuse.InodeAttributes { + return fuse.InodeAttributes{} +}