summaryrefslogtreecommitdiff
path: root/src/sys/statvfs.rs
diff options
context:
space:
mode:
authorarcnmx <arcnmx@users.noreply.github.com>2016-01-26 12:47:08 -0500
committerKamal Marhubi <kamal@marhubi.com>2016-01-28 00:46:19 -0500
commitf167e8f2f375961abd66c27ceb7f31c6fe659c81 (patch)
treeeb00067af46bd7ccc30ea73113350750b36333ea /src/sys/statvfs.rs
parent136bb454d98a9032843259e71f12d8e33cd90f27 (diff)
downloadnix-f167e8f2f375961abd66c27ceb7f31c6fe659c81.zip
Move errno::Result back to crate root
Diffstat (limited to 'src/sys/statvfs.rs')
-rw-r--r--src/sys/statvfs.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sys/statvfs.rs b/src/sys/statvfs.rs
index abfc6c9b..5b72a16b 100644
--- a/src/sys/statvfs.rs
+++ b/src/sys/statvfs.rs
@@ -2,8 +2,7 @@
//!
//! See the `vfs::Statvfs` struct for some rusty wrappers
-use NixPath;
-use errno::{Errno, Result};
+use {Errno, Result, NixPath};
use std::os::unix::io::AsRawFd;
pub mod vfs {