diff options
author | Ian Moffett <ian@osmora.org> | 2024-04-09 21:07:07 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-04-09 21:07:07 -0400 |
commit | 1a60078a3bdd89124f70175757838231f1871c3b (patch) | |
tree | 101b218706fa1aa41720e1adc72e0d2e3d889579 /sys/include | |
parent | 068aa7991a41f52fb3f58232e5ad27d546538191 (diff) |
kernel: mount: Make MNT_RDONLY 0x00000001
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r-- | sys/include/sys/mount.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/include/sys/mount.h b/sys/include/sys/mount.h index 2eb885d..209fa3e 100644 --- a/sys/include/sys/mount.h +++ b/sys/include/sys/mount.h @@ -66,7 +66,7 @@ struct fs_info { /* * Mount flags */ -#define MNT_RDONLY 0x00000000 +#define MNT_RDONLY 0x00000001 #if defined(_KERNEL) int vfs_mount(const char *path, int mntflags); |