Commit d37c7e2d authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

fuse/nodefs: remove unnecessary typecast.

parent a0d6b7de
......@@ -428,7 +428,7 @@ func (c *rawBridge) StatFs(header *fuse.InHeader, out *fuse.StatfsOut) fuse.Stat
if s == nil {
return fuse.ENOSYS
}
*out = *(*fuse.StatfsOut)(s)
*out = *s
return fuse.OK
}
......
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