Commit 1d076a6e authored by Russ Cox's avatar Russ Cox

syscall: regenerate zsyscall_linux_arm.go - fix build

R=kaib
CC=golang-dev
https://golang.org/cl/1209047
parent e8dec0dc
...@@ -31,8 +31,8 @@ func utimes(path string, times *[2]Timeval) (errno int) { ...@@ -31,8 +31,8 @@ func utimes(path string, times *[2]Timeval) (errno int) {
return return
} }
func futimesat(dirfd int, path string, times *[2]Timeval) (errno int) { func futimesat(dirfd int, path *byte, times *[2]Timeval) (errno int) {
_, _, e1 := Syscall(SYS_FUTIMESAT, uintptr(dirfd), uintptr(unsafe.Pointer(StringBytePtr(path))), uintptr(unsafe.Pointer(times))) _, _, e1 := Syscall(SYS_FUTIMESAT, uintptr(dirfd), uintptr(unsafe.Pointer(path)), uintptr(unsafe.Pointer(times)))
errno = int(e1) errno = int(e1)
return return
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment