diff options
author | Ian Moffett <ian@osmora.org> | 2025-10-17 14:37:42 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-10-17 14:37:42 -0400 |
commit | 8d592e845253f3e55deb7f899466ecce5b6cdfb1 (patch) | |
tree | 0298722e0917787d7ca052ffdc1f490556cb9db2 /src/sys/fs | |
parent | 59abe1956c72576cbd9c362603b685e24e30ca41 (diff) |
kern: devfs: Fix typo in VFS ops structure
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/fs')
-rw-r--r-- | src/sys/fs/devfs.c | 2 |
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 }; |