Skip to content
Snippets Groups Projects
Commit 2c9a9532 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Remove unnecessary slash

parent bc4f29d3
No related branches found
No related tags found
No related merge requests found
...@@ -129,7 +129,7 @@ pub fn cpu_id() -> usize { ...@@ -129,7 +129,7 @@ pub fn cpu_id() -> usize {
} }
pub extern fn userspace_init() { 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(0));
assert_eq!(syscall::open(b"debug:", 0), Ok(1)); assert_eq!(syscall::open(b"debug:", 0), Ok(1));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment