From 35d5c4c3fe3673001790d51d7a7944b62080411a Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Mon, 27 Jul 2015 14:38:18 +1000 Subject: [PATCH] Fixed conversions.go. --- conversions.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conversions.go b/conversions.go index 5ea99f4..a011c91 100644 --- a/conversions.go +++ b/conversions.go @@ -387,7 +387,7 @@ func convertTime(t time.Time) (secs uint64, nsec uint32) { func convertAttributes( inodeID fuseops.InodeID, - in *InodeAttributes, + in *fuseops.InodeAttributes, out *fusekernel.Attr) { out.Ino = uint64(inodeID) out.Size = in.Size @@ -438,7 +438,7 @@ func convertExpirationTime(t time.Time) (secs uint64, nsecs uint32) { } func convertChildInodeEntry( - in *ChildInodeEntry, + in *fuseops.ChildInodeEntry, out *fusekernel.EntryOut) { out.Nodeid = uint64(in.Child) out.Generation = uint64(in.Generation)