From 32ec09aa8018370d7f33f64c3173009b025369d8 Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Sat, 8 Jan 2022 05:14:16 -0600 Subject: Fix unnecessary references to nix items --- src/io.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/io.rs') diff --git a/src/io.rs b/src/io.rs index 9ec3214..5bcd6e7 100644 --- a/src/io.rs +++ b/src/io.rs @@ -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::{ -- cgit v1.2.3