Remove unnecessary slash

This commit is contained in:
Jeremy Soller 2016-09-26 17:39:58 -06:00
parent a31877e990
commit a4df5185d2
3 changed files with 5 additions and 5 deletions

View file

@ -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));