Drop extra character

PiperOrigin-RevId: 254237530
This commit is contained in:
Michael Pratt 2019-06-20 11:30:08 -07:00 committed by gVisor bot
parent 7e49515696
commit b46ec3704b
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ func New(conf *boot.Config, args *Args) (*Sandbox, error) {
// occurs. Any errors occurring during cleanup itself are ignored. // occurs. Any errors occurring during cleanup itself are ignored.
c := specutils.MakeCleanup(func() { c := specutils.MakeCleanup(func() {
err := s.destroy() err := s.destroy()
log.Warningf("error Ndestroying sandbox: %v", err) log.Warningf("error destroying sandbox: %v", err)
}) })
defer c.Clean() defer c.Clean()