summaryrefslogtreecommitdiffhomepage
path: root/runsc/cmd
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2021-07-08 20:44:17 +0000
committergVisor bot <gvisor-bot@google.com>2021-07-08 20:44:17 +0000
commite4b190da475b0bc6a50229f30cb837116462c929 (patch)
treeb130373b7d2b1b9927e7e7b4ffb9f214e06d6874 /runsc/cmd
parent3685a1eec38270bea760a0cd4a97df3a248a6046 (diff)
parent052eb90dc15e04dfd8397ca305c507399360dd0e (diff)
Merge release-20210628.0-31-g052eb90dc (automated)
Diffstat (limited to 'runsc/cmd')
-rw-r--r--runsc/cmd/boot.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/cmd/boot.go b/runsc/cmd/boot.go
index 42c66fbcf..f5c9821b2 100644
--- a/runsc/cmd/boot.go
+++ b/runsc/cmd/boot.go
@@ -255,7 +255,7 @@ func (b *Boot) Execute(_ context.Context, f *flag.FlagSet, args ...interface{})
ws := l.WaitExit()
log.Infof("application exiting with %+v", ws)
waitStatus := args[1].(*unix.WaitStatus)
- *waitStatus = unix.WaitStatus(ws.Status())
+ *waitStatus = unix.WaitStatus(ws)
l.Destroy()
return subcommands.ExitSuccess
}