diff options
author | Adin Scannell <ascannell@google.com> | 2020-03-25 17:15:05 -0700 |
---|---|---|
committer | Adin Scannell <ascannell@google.com> | 2020-04-08 10:14:34 -0700 |
commit | 928a7c60b8f02811e9c0fcbed0077efd55471cc4 (patch) | |
tree | 1c32d4947604622f0a9e3a46df06eeefba46adc6 /runsc/container | |
parent | 94b793262d3c54b4c32fed83d2bd121069680d15 (diff) |
Fix all printf formatting errors.
Updates #2243
Diffstat (limited to 'runsc/container')
-rw-r--r-- | runsc/container/test_app/test_app.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/container/test_app/test_app.go b/runsc/container/test_app/test_app.go index 01c47c79f..5f1c4b7d6 100644 --- a/runsc/container/test_app/test_app.go +++ b/runsc/container/test_app/test_app.go @@ -96,7 +96,7 @@ func (c *uds) Execute(ctx context.Context, f *flag.FlagSet, args ...interface{}) listener, err := net.Listen("unix", c.socketPath) if err != nil { - log.Fatal("error listening on socket %q:", c.socketPath, err) + log.Fatalf("error listening on socket %q: %v", c.socketPath, err) } go server(listener, outputFile) |