diff options
author | Damian Gryski <[email protected]> | 2024-08-14 12:09:01 -0700 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-08-15 13:57:02 +0200 |
commit | 4d60d679d3859622bd689cd4a562bcde0e8e3865 (patch) | |
tree | 67e11a174a69421410cbd9976d4ef20aa7d0f167 /main.go | |
parent | 9932f2e1268d38b413ed69dc396df437810ce69b (diff) | |
download | tinygo-4d60d679d3859622bd689cd4a562bcde0e8e3865.tar.gz tinygo-4d60d679d3859622bd689cd4a562bcde0e8e3865.zip |
compiler: fixup Sprintf uses
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -958,7 +958,7 @@ func buildAndRun(pkgName string, config *compileopts.Config, stdout io.Writer, c err = run(cmd, result) if err != nil { if ctx != nil && ctx.Err() == context.DeadlineExceeded { - stdout.Write([]byte(fmt.Sprintf("--- timeout of %s exceeded, terminating...\n", timeout))) + fmt.Fprintf(stdout, "--- timeout of %s exceeded, terminating...\n", timeout) err = ctx.Err() } return result, &commandError{"failed to run compiled binary", result.Binary, err} |