diff --git a/src/exec.rs b/src/exec.rs index e092d6ec5b..825e4003bf 100644 --- a/src/exec.rs +++ b/src/exec.rs @@ -63,7 +63,7 @@ pub fn main() -> ! { ); spawn("process manager", &auth, &this_thr_fd, |write_fd| { - crate::procmngr::run(write_fd, &auth) + crate::procmgr::run(write_fd, &auth) }); let init_proc_fd = unsafe { redox_rt::proc::make_init() }; diff --git a/src/lib.rs b/src/lib.rs index 71e88a352c..515955489b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -20,7 +20,7 @@ pub mod arch; pub mod exec; pub mod initfs; -pub mod procmngr; +pub mod procmgr; pub mod start; extern crate alloc; diff --git a/src/procmngr.rs b/src/procmgr.rs similarity index 100% rename from src/procmngr.rs rename to src/procmgr.rs