diff options
| author | AKSUM <51446624+AKSUMRUS@users.noreply.github.com> | 2024-05-02 20:33:36 +0300 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-05-02 17:41:43 +0000 |
| commit | ddfc15a1555eaea52bb3186b2c53245cc91ac5d2 (patch) | |
| tree | 6214e1208801dfb336c30f3a6dd02da16ee42911 | |
| parent | f61ed74922653fa99fbc3f915d36f6741e2df41c (diff) | |
syz-runner: fix a typo
| -rw-r--r-- | syz-runner/runner.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/syz-runner/runner.go b/syz-runner/runner.go index 496d6d07d..3b3703944 100644 --- a/syz-runner/runner.go +++ b/syz-runner/runner.go @@ -148,7 +148,7 @@ func (rn *Runner) Run(firstProg []byte, taskID int64) { env, err = ipc.MakeEnv(rn.config, 0) if err != nil { - log.Fatalf("failed to create new execution environmentL %v", err) + log.Fatalf("failed to create new execution environment: %v", err) } } } |
