Remove all usages of the legacy scheme syntax

This commit is contained in:
bjorn3
2024-08-19 18:36:45 +02:00
parent 32410bde7c
commit 6f076cd905
+1 -1
View File
@@ -74,7 +74,7 @@ impl Filesystem {
pub fn new() -> Result<Self> {
Ok(Self {
files: iter::once((Self::ROOT_INODE, Self::create_root_inode())).collect(),
memory_file: fs::File::open("memory:").or(Err(Error::new(EIO)))?,
memory_file: fs::File::open("/scheme/memory").or(Err(Error::new(EIO)))?,
last_inode_number: Self::ROOT_INODE,
})
}