From ae6cbd4fcf35471996c35018ec0ff908c0a59728 Mon Sep 17 00:00:00 2001 From: Dave Cheney Date: Sat, 17 May 2014 00:06:56 +0000 Subject: [PATCH] syscall: fix arm build Rename Seek to seek in asm file, was overlooked in CL 99320043. LGTM=bradfitz, r R=r, rsc, bradfitz CC=golang-codereviews https://golang.org/cl/99320044 --- src/pkg/syscall/asm_linux_arm.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/syscall/asm_linux_arm.s b/src/pkg/syscall/asm_linux_arm.s index 8499a73704..a28bc6cfc0 100644 --- a/src/pkg/syscall/asm_linux_arm.s +++ b/src/pkg/syscall/asm_linux_arm.s @@ -103,7 +103,7 @@ ok2: // taking the address of the return value newoffset. // Underlying system call is // llseek(int fd, int offhi, int offlo, int64 *result, int whence) -TEXT ·Seek(SB),NOSPLIT,$0-32 +TEXT ·seek(SB),NOSPLIT,$0-32 BL runtime·entersyscall(SB) MOVW $SYS__LLSEEK, R7 // syscall entry MOVW 4(SP), R0 // fd -- 2.50.0