summaryrefslogtreecommitdiff
path: root/src/sys/fs/devfs.c
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-10-17 14:37:42 -0400
committerIan Moffett <ian@osmora.org>2025-10-17 14:37:42 -0400
commit8d592e845253f3e55deb7f899466ecce5b6cdfb1 (patch)
tree0298722e0917787d7ca052ffdc1f490556cb9db2 /src/sys/fs/devfs.c
parent59abe1956c72576cbd9c362603b685e24e30ca41 (diff)
kern: devfs: Fix typo in VFS ops structure
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/fs/devfs.c')
-rw-r--r--src/sys/fs/devfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sys/fs/devfs.c b/src/sys/fs/devfs.c
index 7553003..729449a 100644
--- a/src/sys/fs/devfs.c
+++ b/src/sys/fs/devfs.c
@@ -160,7 +160,7 @@ static struct vop devfs_vops = {
.lookup = devfs_lookup
};
-struct vfsops g_devfs_vfops = {
+struct vfsops g_devfs_vfsops = {
.init = devfs_init,
.mount = devfs_mount
};