diff options
Diffstat (limited to 'src/ops/global.rs')
| -rw-r--r-- | src/ops/global.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ops/global.rs b/src/ops/global.rs index aa83b1e..65954f0 100644 --- a/src/ops/global.rs +++ b/src/ops/global.rs @@ -18,12 +18,12 @@ impl Sealed for Statfs {} impl<'o> Operation<'o> for Init { type RequestBody = &'o proto::InitIn; - type ReplyTail = InitState; + type ReplyState = InitState; } impl<'o> Operation<'o> for Statfs { type RequestBody = (); - type ReplyTail = (); + type ReplyState = (); } impl<'o> ReplyOk<'o> for Init { @@ -31,7 +31,7 @@ impl<'o> ReplyOk<'o> for Init { let InitState { kernel_flags, buffer_pages, - } = reply.tail; + } = reply.state; let flags = { use proto::InitFlags; |
