summaryrefslogtreecommitdiffstats
path: root/src/runner/container/ns.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/runner/container/ns.rs')
-rw-r--r--src/runner/container/ns.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/runner/container/ns.rs b/src/runner/container/ns.rs
index f0abb6f..a075931 100644
--- a/src/runner/container/ns.rs
+++ b/src/runner/container/ns.rs
@@ -4,8 +4,9 @@ use nix::{
unistd::{self, Gid, Pid, Uid},
};
+use common::error::*;
+
use super::util::clone;
-use crate::util::error::*;
pub fn mount_proc() {
mount::mount::<_, _, _, str>(Some("proc"), "/proc", Some("proc"), MsFlags::empty(), None)