From 36d1c4540af3ef058d68092e41af05aa4a8c5eca Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 8 Mar 2018 18:48:26 +0100 Subject: all: fix gometalinter warnings Fix typos, non-canonical code, remove dead code, etc. --- pkg/host/host_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/host/host_linux.go') diff --git a/pkg/host/host_linux.go b/pkg/host/host_linux.go index 57ce3e79e..0d1cd9afc 100644 --- a/pkg/host/host_linux.go +++ b/pkg/host/host_linux.go @@ -55,7 +55,7 @@ func isSupported(sandbox string, kallsyms []byte, c *prog.Syscall) bool { if newname := kallsymsMap[name]; newname != "" { name = newname } - return bytes.Index(kallsyms, []byte(" T sys_"+name+"\n")) != -1 + return bytes.Contains(kallsyms, []byte(" T sys_"+name+"\n")) } // Some syscall names diverge in __NR_* consts and kallsyms. -- cgit mrf-deployment