diff --git a/src/kernel/core/fs/bootfs.c b/src/kernel/core/fs/bootfs.c index d97b8f541b..ea603d8c43 100755 --- a/src/kernel/core/fs/bootfs.c +++ b/src/kernel/core/fs/bootfs.c @@ -57,7 +57,6 @@ struct bootfs_vnode { struct bootfs_vnode *all_next; vnode_id id; char *name; - void *redir_vnode; struct bootfs_vnode *parent; struct bootfs_vnode *dir_next; struct bootfs_stream stream; diff --git a/src/kernel/core/fs/devfs.c b/src/kernel/core/fs/devfs.c index bec8613351..16ec840326 100755 --- a/src/kernel/core/fs/devfs.c +++ b/src/kernel/core/fs/devfs.c @@ -73,7 +73,6 @@ struct devfs_vnode { struct devfs_vnode *all_next; vnode_id id; char *name; - void *redir_vnode; struct devfs_vnode *parent; struct devfs_vnode *dir_next; struct devfs_stream stream; diff --git a/src/kernel/core/fs/rootfs.c b/src/kernel/core/fs/rootfs.c index 712731ea44..42f27dc56d 100755 --- a/src/kernel/core/fs/rootfs.c +++ b/src/kernel/core/fs/rootfs.c @@ -48,7 +48,6 @@ struct rootfs_vnode { struct rootfs_vnode *all_next; vnode_id id; char *name; - void *redir_vnode; struct rootfs_vnode *parent; struct rootfs_vnode *dir_next; struct rootfs_stream stream;