Merge pull request #31478 from cyphar/seccomp-fix-unsupported-build

profiles: seccomp: fix !seccomp build
This commit is contained in:
Justin Cormack 2017-03-02 09:23:28 -08:00 committed by GitHub
commit 0b9fddb789
1 changed files with 1 additions and 1 deletions

View File

@ -8,6 +8,6 @@ import (
)
// DefaultProfile returns a nil pointer on unsupported systems.
func DefaultProfile(rs *specs.Spec) *types.Seccomp {
func DefaultProfile() *types.Seccomp {
return nil
}