Merge pull request #1254 from hqhq/fix_go_vet

Fix go_vet errors
This commit is contained in:
Michael Crosby
2017-01-09 10:49:45 -08:00
committed by GitHub
@@ -4,12 +4,10 @@ package configs
func (n *Namespace) Syscall() int {
panic("No namespace syscall support")
return 0
}
// CloneFlags parses the container's Namespaces options to set the correct
// flags on clone, unshare. This function returns flags only for new namespaces.
func (n *Namespaces) CloneFlags() uintptr {
panic("No namespace syscall support")
return uintptr(0)
}