Browse Source

fix(mmap): correct mmap() definition

greatbridf 2 năm trước cách đây
mục cha
commit
a9363f3a4a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      include/kernel/mm.hpp

+ 1 - 1
include/kernel/mm.hpp

@@ -113,7 +113,7 @@ int k_map(
 int mmap(
     void* hint,
     size_t len,
-    struct inode* file,
+    fs::inode* file,
     size_t offset,
     int write,
     int priv);