aboutsummaryrefslogtreecommitdiffhomepage
path: root/sandbox/sequential.go
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/sequential.go')
-rw-r--r--sandbox/sequential.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/sandbox/sequential.go b/sandbox/sequential.go
index 2a38c89b..1ffe4e7e 100644
--- a/sandbox/sequential.go
+++ b/sandbox/sequential.go
@@ -36,7 +36,7 @@ func (b *BindMount) String() string {
return fmt.Sprintf("%q on %q flags %#x", b.Source, b.Target, b.Flags&BindWritable)
}
func (f *Ops) Bind(source, target string, flags int) *Ops {
- *f = append(*f, &BindMount{source, target, flags | BindRecursive})
+ *f = append(*f, &BindMount{source, target, flags | bindRecursive})
return f
}