diff --git a/pbs-client/src/pxar/fuse.rs b/pbs-client/src/pxar/fuse.rs index 8801c8f3..89847c0a 100644 --- a/pbs-client/src/pxar/fuse.rs +++ b/pbs-client/src/pxar/fuse.rs @@ -105,9 +105,9 @@ impl Future for Session { /// We use this to return an errno value back to the kernel. macro_rules! io_return { - ($errno:expr) => { + ($errno:expr) => {{ return Err(::std::io::Error::from_raw_os_error($errno).into()); - }; + }}; } /// Format an "other" error, see `io_bail` below for details.