From 2c9a95329529cb9ba7083c60ec30c42c5818e602 Mon Sep 17 00:00:00 2001 From: Jeremy Soller <jackpot51@gmail.com> Date: Mon, 26 Sep 2016 17:39:58 -0600 Subject: [PATCH] Remove unnecessary slash --- lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib.rs b/lib.rs index 91b00008..fee417cf 100644 --- a/lib.rs +++ b/lib.rs @@ -129,7 +129,7 @@ pub fn cpu_id() -> usize { } pub extern fn userspace_init() { - assert_eq!(syscall::chdir(b"initfs:bin/"), Ok(0)); + assert_eq!(syscall::chdir(b"initfs:bin"), Ok(0)); assert_eq!(syscall::open(b"debug:", 0), Ok(0)); assert_eq!(syscall::open(b"debug:", 0), Ok(1)); -- GitLab