diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-01-05 07:37:31 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-01-05 07:37:31 -0600 |
| commit | fe2ec80b262e6457b896f23ec91e4fe9da4b8117 (patch) | |
| tree | 662c5590405f894d144f3a63f9d5a0a210f3b558 /src/ops/global.rs | |
| parent | ce320da58d2917789815bc4dafe15a9b47a9df65 (diff) | |
Rename ReplyTail as ReplyState
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; |
