aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/initremount.go
diff options
context:
space:
mode:
Diffstat (limited to 'container/initremount.go')
-rw-r--r--container/initremount.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/container/initremount.go b/container/initremount.go
index 09f141db..b89ed543 100644
--- a/container/initremount.go
+++ b/container/initremount.go
@@ -21,8 +21,8 @@ type RemountOp struct {
func (r *RemountOp) Valid() bool { return r != nil && r.Target != nil }
func (*RemountOp) early(*setupState, syscallDispatcher) error { return nil }
-func (r *RemountOp) apply(_ *setupState, k syscallDispatcher) error {
- return k.remount(toSysroot(r.Target.String()), r.Flags)
+func (r *RemountOp) apply(state *setupState, k syscallDispatcher) error {
+ return k.remount(state, toSysroot(r.Target.String()), r.Flags)
}
func (r *RemountOp) Is(op Op) bool {