From 987e850fb59ee5abef7f20d9cf923df7fae38941 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 29 Jan 2021 09:47:08 +0100 Subject: tools/syz-testbuild: fix a typo in error message --- tools/syz-testbuild/testbuild.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") -- cgit mrf-deployment