lint: Fix virtcontainers staticcheck errors

Correct `staticcheck` linter issues.

Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
This commit is contained in:
James O. D. Hunt
2018-03-19 19:24:26 +00:00
parent d51a5e303d
commit b1628639e8
5 changed files with 8 additions and 8 deletions

View File

@@ -485,7 +485,7 @@ func (h *Hyperstart) WaitForPAE(containerID, processID string) (*PAECommand, err
msg := <-channel
var paeData PAECommand
err = json.Unmarshal(msg.Message, paeData)
err = json.Unmarshal(msg.Message, &paeData)
if err != nil {
return nil, err
}