Commit 7c6fe740 authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

fuse: fix CreateOut print

Change-Id: I331f9f702fa0a850df2d6f1e3dd75f9f550750ed
parent 4106e0a2
...@@ -269,7 +269,7 @@ func (o *EntryOut) string() string { ...@@ -269,7 +269,7 @@ func (o *EntryOut) string() string {
} }
func (o *CreateOut) string() string { func (o *CreateOut) string() string {
return fmt.Sprintf("{n%d g%d %v %v}", o.NodeId, o.Generation, &o.EntryOut, &o.OpenOut) return fmt.Sprintf("{n%d g%d %v %v}", o.NodeId, o.Generation, &o.EntryOut, o.OpenOut.string())
} }
func (o *StatfsOut) string() string { func (o *StatfsOut) string() string {
......
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