diff options
Diffstat (limited to 'sandbox/seccomp/export.go')
| -rw-r--r-- | sandbox/seccomp/export.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sandbox/seccomp/export.go b/sandbox/seccomp/export.go index 95684235..c0d2803d 100644 --- a/sandbox/seccomp/export.go +++ b/sandbox/seccomp/export.go @@ -7,7 +7,7 @@ import ( ) type exporter struct { - opts SyscallOpts + opts FilterOpts r, w *os.File prepareOnce sync.Once @@ -53,6 +53,6 @@ func (e *exporter) closeWrite() error { return e.closeErr } -func newExporter(opts SyscallOpts) *exporter { +func newExporter(opts FilterOpts) *exporter { return &exporter{opts: opts} } |
