summaryrefslogtreecommitdiffhomepage
path: root/runsc/sandbox
diff options
context:
space:
mode:
authorIan Gudger <igudger@google.com>2018-05-04 14:15:24 -0700
committerShentubot <shentubot@google.com>2018-05-04 14:16:11 -0700
commitf47174f06b9904b830268d46a7e817053b6235c8 (patch)
tree15d932f4a27877122d433226346c266d222a96f8 /runsc/sandbox
parent0ce9c81b416494e3c3da793c278dfc767341fa6d (diff)
Run gofmt -s on everything
PiperOrigin-RevId: 195469901 Change-Id: I66d5c7a334bbb8b47e40d266a2661291c2d91c7f
Diffstat (limited to 'runsc/sandbox')
-rw-r--r--runsc/sandbox/sandbox.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/runsc/sandbox/sandbox.go b/runsc/sandbox/sandbox.go
index 13bf5d800..0354a64b9 100644
--- a/runsc/sandbox/sandbox.go
+++ b/runsc/sandbox/sandbox.go
@@ -493,8 +493,8 @@ func (s *Sandbox) createSandboxProcess(conf *boot.Config, binPath string, common
// namespace for these.
log.Infof("Sandbox will be started in empty IPC and UTS namespaces")
nss := []specs.LinuxNamespace{
- specs.LinuxNamespace{Type: specs.IPCNamespace},
- specs.LinuxNamespace{Type: specs.UTSNamespace},
+ {Type: specs.IPCNamespace},
+ {Type: specs.UTSNamespace},
}
if conf.Platform == boot.PlatformPtrace {