execute: make "runtime" argument const in exec_needs_mount_namespace()

The argument can be const, then let's make so.
This commit is contained in:
Yu Watanabe 2017-12-30 18:38:26 +09:00
parent b43ee82fc1
commit 4657abb5d4
1 changed files with 1 additions and 1 deletions

View File

@ -1776,7 +1776,7 @@ static int build_pass_environment(const ExecContext *c, char ***ret) {
static bool exec_needs_mount_namespace(
const ExecContext *context,
const ExecParameters *params,
ExecRuntime *runtime) {
const ExecRuntime *runtime) {
assert(context);
assert(params);