Commit 35d5c4c3 authored by Aaron Jacobs's avatar Aaron Jacobs

Fixed conversions.go.

parent 125c36db
......@@ -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)
......
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