From: Yu Watanabe Date: Sat, 10 Feb 2018 10:24:57 +0000 (+0900) Subject: core/namespace: make arguments const if possible X-Git-Tag: v238~79^2~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2a2969fd5d75527b3138c6d738e302e9f9808f5e;p=thirdparty%2Fsystemd.git core/namespace: make arguments const if possible --- diff --git a/src/core/namespace.c b/src/core/namespace.c index 72f0d038d11..007d3c213cb 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);