Преглед изворни кода

fix(mmap): correct mmap() definition

greatbridf пре 2 година
родитељ
комит
a9363f3a4a
1 измењених фајлова са 1 додато и 1 уклоњено
  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);