diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-02-10 19:24:57 +0900 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-02-21 09:05:14 +0900 |
commit | 2a2969fd5d75527b3138c6d738e302e9f9808f5e (patch) | |
tree | eb6e1e7699e055e10b27c2fa01fe8e1cf8573923 /src | |
parent | 12873b6c80c94aea8fe29dfeb7bcb44c295df326 (diff) | |
download | systemd-2a2969fd5d75527b3138c6d738e302e9f9808f5e.tar.gz |
core/namespace: make arguments const if possible
Diffstat (limited to 'src')
-rw-r--r-- | src/core/namespace.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/namespace.c b/src/core/namespace.c index 72f0d038d1..007d3c213c 100644 --- a/src/core/namespace.c +++ b/src/core/namespace.c @@ -651,7 +651,7 @@ fail: return r; } -static int mount_bind_dev(MountEntry *m) { +static int mount_bind_dev(const MountEntry *m) { int r; assert(m); @@ -673,7 +673,7 @@ static int mount_bind_dev(MountEntry *m) { return 1; } -static int mount_sysfs(MountEntry *m) { +static int mount_sysfs(const MountEntry *m) { int r; assert(m); @@ -693,7 +693,7 @@ static int mount_sysfs(MountEntry *m) { return 1; } -static int mount_procfs(MountEntry *m) { +static int mount_procfs(const MountEntry *m) { int r; assert(m); @@ -713,7 +713,7 @@ static int mount_procfs(MountEntry *m) { return 1; } -static int mount_empty_dir(MountEntry *m) { +static int mount_empty_dir(const MountEntry *m) { assert(m); /* First, get rid of everything that is below if there is anything. Then, overmount with our new empty dir */ @@ -729,7 +729,7 @@ static int mount_empty_dir(MountEntry *m) { static int mount_entry_chase( const char *root_directory, - MountEntry *m, + const MountEntry *m, const char *path, char **location) { @@ -902,7 +902,7 @@ static int apply_mount( return 0; } -static int make_read_only(MountEntry *m, char **blacklist, FILE *proc_self_mountinfo) { +static int make_read_only(const MountEntry *m, char **blacklist, FILE *proc_self_mountinfo) { int r = 0; assert(m); |