Skip to content

Commit 06b191e

Browse files
committed
internal/syscall/unix: apply fstatat fix to linux/mips64le
Apply CL 633280 to linux/mips64le, as it has the same struct as mips64. Updates #70659. Change-Id: Ibab635e69e44682eb214bf6a00f4cd75816b2d34 Reviewed-on: https://go-review.googlesource.com/c/go/+/637739 TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]> Run-TryBot: Cherry Mui <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
1 parent 110ab1a commit 06b191e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/internal/syscall/unix/at_fstatat.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
//go:build dragonfly || (linux && !(loong64 || mips64)) || netbsd || (openbsd && mips64)
5+
//go:build dragonfly || (linux && !(loong64 || mips64 || mips64le)) || netbsd || (openbsd && mips64)
66

77
package unix
88

src/internal/syscall/unix/at_fstatat2.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
//go:build freebsd || (linux && (loong64 || mips64))
5+
//go:build freebsd || (linux && (loong64 || mips64 || mips64le))
66

77
package unix
88

0 commit comments

Comments
 (0)