diff options
| author | Russ Cox <rsc@golang.org> | 2025-10-28 21:54:33 -0400 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2025-10-29 11:00:09 -0700 |
| commit | 49c1da474d68045458b9462b743e3f0f7dcefdfb (patch) | |
| tree | b44ac2cf3b548dd2e4bc3ab067614408ad0694eb /src/syscall/exec_plan9.go | |
| parent | b2a346bbd1e1e9cb069001cf86ef39b0dd5722f8 (diff) | |
| download | go-49c1da474d68045458b9462b743e3f0f7dcefdfb.tar.xz | |
internal/itoa, internal/runtime/strconv: delete
Replaced by internal/strconv.
Change-Id: I0656a9ad5075e60339e963fbae7d194d2f3e16be
Reviewed-on: https://go-review.googlesource.com/c/go/+/716001
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Diffstat (limited to 'src/syscall/exec_plan9.go')
| -rw-r--r-- | src/syscall/exec_plan9.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syscall/exec_plan9.go b/src/syscall/exec_plan9.go index 91705e175e..f0481e8bf0 100644 --- a/src/syscall/exec_plan9.go +++ b/src/syscall/exec_plan9.go @@ -7,7 +7,7 @@ package syscall import ( - "internal/itoa" + "internal/strconv" "runtime" "sync" "unsafe" @@ -327,7 +327,7 @@ func cexecPipe(p []int) error { return e } - fd, e := Open("#d/"+itoa.Itoa(p[1]), O_RDWR|O_CLOEXEC) + fd, e := Open("#d/"+strconv.Itoa(p[1]), O_RDWR|O_CLOEXEC) if e != nil { Close(p[0]) Close(p[1]) |
