diff options
Diffstat (limited to 'src/sys/uio.rs')
-rw-r--r-- | src/sys/uio.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sys/uio.rs b/src/sys/uio.rs index 16426ab9..cd161423 100644 --- a/src/sys/uio.rs +++ b/src/sys/uio.rs @@ -1,7 +1,8 @@ // Silence invalid warnings due to rust-lang/rust#16719 #![allow(improper_ctypes)] -use {Errno, Result}; +use Result; +use errno::Errno; use libc::{self, c_int, c_void, size_t, off_t}; use std::marker::PhantomData; use std::os::unix::io::RawFd; |