diff options
author | Ian Gudger <igudger@google.com> | 2018-09-21 14:05:46 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2018-09-21 14:06:59 -0700 |
commit | 7ce13ebcadc764c5f69215f072b53d3843bec679 (patch) | |
tree | 4968b723919164eb8789653ab7f5ce8ec0bb56a9 /pkg/seccomp/seccomp.go | |
parent | 4634cd66ad036023c218dd6c3899194039cc608b (diff) |
Run gofmt -s on everything
PiperOrigin-RevId: 214040901
Change-Id: I74d79497a053da3624921ad2b7c5193ca4a87942
Diffstat (limited to 'pkg/seccomp/seccomp.go')
-rw-r--r-- | pkg/seccomp/seccomp.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/seccomp/seccomp.go b/pkg/seccomp/seccomp.go index cd6b0b4bc..49da3c775 100644 --- a/pkg/seccomp/seccomp.go +++ b/pkg/seccomp/seccomp.go @@ -98,7 +98,7 @@ func buildProgram(rules SyscallRules, kill bool) ([]linux.BPFInstruction, error) // buildIndex builds a BST to quickly search through all syscalls that are whitelisted. func buildIndex(rules SyscallRules, program *bpf.ProgramBuilder) error { syscalls := []uintptr{} - for sysno, _ := range rules { + for sysno := range rules { syscalls = append(syscalls, sysno) } |