changeset 331:e64c8734a802

tweak fs_impl arguments
author anatofuz
date Sun, 09 Feb 2020 19:18:42 +0900
parents e34fb61f280a
children 37a3a8661f8a 65c061fed881
files src/impl/fs_impl.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/impl/fs_impl.h	Sun Feb 09 19:08:50 2020 +0900
+++ b/src/impl/fs_impl.h	Sun Feb 09 19:18:42 2020 +0900
@@ -16,8 +16,8 @@
     __code writei_loopcheck(Type* fs_impl, uint tot, uint m, char* src, uint off, uint n, __code next(...));
     __code writei_loop(Type* fs_impl, struct inode* ip, struct buf* bp, uint tot, uint m, char* src, uint off, uint n, __code next(...));
     __code writei_noloop(Type* fs_impl, struct inode* ip, uint n, uint off, __code next(int ret, ...));
-    __code dirlookup_loopcheck(Type* fs_impl, struct inode* dp, char* name, uint off, uint* poff, dirent* de, __code next(...));
-    __code dirlookup_loop(Type* fs_impl, struct inode* dp, char* name, uint off, uint inum, uint* poff, dirent* de, __code next(int ret, ...));
+    __code dirlookup_loopcheck(Type* fs_impl, struct inode* dp, char* name, uint off, uint* poff, struct dirent* de, __code next(...));
+    __code dirlookup_loop(Type* fs_impl, struct inode* dp, char* name, uint off, uint inum, uint* poff, struct dirent* de, __code next(int ret, ...));
     __code dirlookup_noloop(Type* fs_impl, __code next(int ret, ...));
     __code dirlink_namecheck(Type* fs_impl, struct inode* ip, __code next(int ret, ...));
     __code dirlink_loopcheck(Type* fs_impl, struct dirent* de, struct inode* dp, uint off, __code next(...));