diff options
Diffstat (limited to 'pkg/host/host_netbsd.go')
| -rw-r--r-- | pkg/host/host_netbsd.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/host/host_netbsd.go b/pkg/host/host_netbsd.go index d2745e376..39e8655c4 100644 --- a/pkg/host/host_netbsd.go +++ b/pkg/host/host_netbsd.go @@ -8,7 +8,7 @@ import ( ) // DetectSupportedSyscalls returns list on supported syscalls on host. -func DetectSupportedSyscalls(target *prog.Target) (map[*prog.Syscall]bool, error) { +func DetectSupportedSyscalls(target *prog.Target, sandbox string) (map[*prog.Syscall]bool, error) { supported := make(map[*prog.Syscall]bool) for _, c := range target.Syscalls { supported[c] = true |
