summaryrefslogtreecommitdiff
path: root/src/mqueue.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/mqueue.rs
parent136bb454d98a9032843259e71f12d8e33cd90f27 (diff)
downloadnix-f167e8f2f375961abd66c27ceb7f31c6fe659c81.zip
Move errno::Result back to crate root
Diffstat (limited to 'src/mqueue.rs')
-rw-r--r--src/mqueue.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mqueue.rs b/src/mqueue.rs
index 1625d4ef..bc3eca2c 100644
--- a/src/mqueue.rs
+++ b/src/mqueue.rs
@@ -2,7 +2,7 @@
//!
//! [Further reading and details on the C API](http://man7.org/linux/man-pages/man7/mq_overview.7.html)
-use errno::{Errno, Result};
+use {Errno, Result};
use libc::{c_int, c_long, c_char, size_t, mode_t, strlen};
use std::ffi::CString;