Skip to content

Commit

Permalink
internal/syscall/unix: apply fstatat fix to linux/mips64le
Browse files Browse the repository at this point in the history
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 <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Run-TryBot: Cherry Mui <cherryyz@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
  • Loading branch information
cherrymui committed Dec 21, 2024
1 parent 110ab1a commit 06b191e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/internal/syscall/unix/at_fstatat.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

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

package unix

Expand Down
2 changes: 1 addition & 1 deletion src/internal/syscall/unix/at_fstatat2.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build freebsd || (linux && (loong64 || mips64))
//go:build freebsd || (linux && (loong64 || mips64 || mips64le))

package unix

Expand Down

0 comments on commit 06b191e

Please sign in to comment.