Przeglądaj źródła

fix(mmap): correct mmap() definition

greatbridf 2 lat temu
rodzic
commit
a9363f3a4a
1 zmienionych plików z 1 dodań i 1 usunięć
  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);