diff options
| author | Alejandro Soto <alejandro@34project.org> | 2021-12-24 04:58:51 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2021-12-24 05:07:23 -0600 |
| commit | 311b2a40213aa48131a189f99dc4258d354c0c78 (patch) | |
| tree | 3f4fd971a7b94d07f11a8c878e0bc665bdf61f67 /src/fuse/io.rs | |
| parent | 5afc15edaa593bdf7dd2ae7c542980d9d70b8321 (diff) | |
Fix old warnings
Diffstat (limited to '')
| -rw-r--r-- | src/fuse/io.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fuse/io.rs b/src/fuse/io.rs index 450d9f7..305f0ef 100644 --- a/src/fuse/io.rs +++ b/src/fuse/io.rs @@ -68,7 +68,7 @@ impl<'o, Fs: Fuse, O: Operation<'o, Fs>> Reply<'o, Fs, O> { F: Future<Output = T>, { tokio::pin!(f); - let mut rx = session::interrupt_rx(&self.session); + let mut rx = session::interrupt_rx(self.session); use Interruptible::*; loop { @@ -97,7 +97,7 @@ impl<'o, Fs: Fuse, O: Operation<'o, Fs>> Reply<'o, Fs, O> { let errno = errno as i32; O::consume_errno(errno, &mut self.tail); - Done::from_result(session::fail(&self.session, self.unique, errno)) + Done::from_result(session::fail(self.session, self.unique, errno)) } pub fn not_implemented(self) -> Done<'o> { |
