From 38560a0316cae023f50aed42ab226271231a1012 Mon Sep 17 00:00:00 2001 From: Aleksa Sarai Date: Wed, 19 Oct 2016 05:37:18 +1100 Subject: [PATCH] checkpoint: fix gofmt Fixes: a60040c62d03 ("Container must not checkpoint in created state") Fixes: #1076 Signed-off-by: Aleksa Sarai --- checkpoint.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checkpoint.go b/checkpoint.go index 192f67cec..3def699bc 100644 --- a/checkpoint.go +++ b/checkpoint.go @@ -40,7 +40,7 @@ checkpointed.`, } status, err := container.Status() if err != nil { - return(err) + return err } if status == libcontainer.Created { fatalf("Container cannot be checkpointed in created state")