diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-01-08 05:14:16 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-01-08 05:14:16 -0600 |
| commit | 32ec09aa8018370d7f33f64c3173009b025369d8 (patch) | |
| tree | c3a1102158149e4fd028edf9a3e39fe04ee19d87 /src | |
| parent | ca4e327eb3eb16214a0ede03cc16349aa907c428 (diff) | |
Fix unnecessary references to nix items
Diffstat (limited to 'src')
| -rw-r--r-- | src/io.rs | 4 | ||||
| -rw-r--r-- | src/lib.rs | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -1,5 +1,5 @@ use bytemuck::Zeroable; -use nix::{errno::Errno, sys::stat::SFlag}; +use nix::sys::stat::SFlag; use std::{ convert::Infallible, @@ -9,7 +9,7 @@ use std::{ }; use super::{Done, Operation, Reply, Request}; -use crate::{proto, FuseResult, Ino, Timestamp, Ttl}; +use crate::{proto, Errno, FuseResult, Ino, Timestamp, Ttl}; #[doc(no_inline)] pub use nix::{ @@ -14,6 +14,8 @@ use std::{ }; pub use self::error::{FuseError, FuseResult}; + +#[doc(no_inline)] pub use nix::{self, errno::Errno}; pub mod error; |
