From 49c1da474d68045458b9462b743e3f0f7dcefdfb Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Tue, 28 Oct 2025 21:54:33 -0400 Subject: 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 LUCI-TryBot-Result: Go LUCI --- src/syscall/syscall_linux.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/syscall/syscall_linux.go') diff --git a/src/syscall/syscall_linux.go b/src/syscall/syscall_linux.go index ec9f771daa..9418bd8494 100644 --- a/src/syscall/syscall_linux.go +++ b/src/syscall/syscall_linux.go @@ -12,8 +12,8 @@ package syscall import ( - "internal/itoa" "internal/runtime/syscall/linux" + "internal/strconv" "runtime" "slices" "unsafe" @@ -361,7 +361,7 @@ func Futimesat(dirfd int, path string, tv []Timeval) (err error) { func Futimes(fd int, tv []Timeval) (err error) { // Believe it or not, this is the best we can do on Linux // (and is what glibc does). - return Utimes("/proc/self/fd/"+itoa.Itoa(fd), tv) + return Utimes("/proc/self/fd/"+strconv.Itoa(fd), tv) } const ImplementsGetwd = true -- cgit v1.3-5-g45d5