diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-02-21 15:32:25 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-02-22 14:49:36 +0000 |
commit | cef3979203ffe6291f9a4d9cac7c0a69566280d0 (patch) | |
tree | 1d27ac13fd4ff41b6f380d470e072c6140c91072 | |
parent | 8ce7c5bdd1b2c7efa1c12860888c65e1236dd0e6 (diff) | |
download | podman-cef3979203ffe6291f9a4d9cac7c0a69566280d0.tar.gz podman-cef3979203ffe6291f9a4d9cac7c0a69566280d0.tar.bz2 podman-cef3979203ffe6291f9a4d9cac7c0a69566280d0.zip |
Fix gofmt
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #361
Approved by: rhatdan
-rw-r--r-- | libpod/pod.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/pod.go b/libpod/pod.go index 889150783..a2d2204b3 100644 --- a/libpod/pod.go +++ b/libpod/pod.go @@ -125,7 +125,7 @@ func (p *Pod) Start() (map[string]error, error) { } if err := ctr.runtime.ociRuntime.startContainer(ctr); err != nil { - errorEncountered = true + errorEncountered = true ctrErrors[ctr.ID()] = err continue } |