diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2021-01-29 09:47:08 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2021-01-29 15:48:16 +0100 |
| commit | 987e850fb59ee5abef7f20d9cf923df7fae38941 (patch) | |
| tree | 6df5d7afec2c425d30c081b2fa6f8a846d441f1e | |
| parent | 6593fd32d71a33f76462f347ef263e26600d998e (diff) | |
tools/syz-testbuild: fix a typo in error message
| -rw-r--r-- | tools/syz-testbuild/testbuild.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/syz-testbuild/testbuild.go b/tools/syz-testbuild/testbuild.go index d98452ba1..72c0d235b 100644 --- a/tools/syz-testbuild/testbuild.go +++ b/tools/syz-testbuild/testbuild.go @@ -59,7 +59,7 @@ const ( func main() { flag.Parse() if os.Getuid() != 0 { - tool.Failf("image build will tool.Fail, run under root") + tool.Failf("image build will fail, run under root") } os.Setenv("SYZ_DISABLE_SANDBOXING", "yes") dir, err := ioutil.TempDir("", "syz-testbuild") |
