summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorChuyan Zhang <me@zcy.moe>2023-11-26 02:33:01 -0800
committerChuyan Zhang <me@zcy.moe>2023-11-26 02:33:01 -0800
commit9d1368b0ea380a9446b4697af668d1685464b6c7 (patch)
tree2103af418264cc70addc9cfc6ed7acac640f5151 /src/main.rs
parent777d5e01a34b8ebe6f1a5751b593266f93e88499 (diff)
downloadmyfs-9d1368b0ea380a9446b4697af668d1685464b6c7.tar.gz
myfs-9d1368b0ea380a9446b4697af668d1685464b6c7.zip
more code idk what they are im so tired ohno
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index e0bfa2e..5d460fc 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -115,7 +115,7 @@ impl AyaFS {
cached_blocks: BlockCache::new(device.clone(), 8192),
};
- fs.create_directory(0o755, get_current_uid(), get_current_gid(), 0);
+ fs.create_directory(0o755, get_current_uid(), get_current_gid(), 0, None);
fs
}