From 0732a990476f7f2f5f7200b39ba4ab730c0f09f8 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Fri, 20 Dec 2019 12:33:10 -0800 Subject: [PATCH] unix: use correct file name in comment Change-Id: Ib05fbd6f1dca630a3ac596f88373756797d8c27e Reviewed-on: https://go-review.googlesource.com/c/sys/+/212298 Reviewed-by: Tobias Klauser --- unix/fcntl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unix/fcntl.go b/unix/fcntl.go index 39c03f1e..df2fc50f 100644 --- a/unix/fcntl.go +++ b/unix/fcntl.go @@ -9,7 +9,7 @@ package unix import "unsafe" // fcntl64Syscall is usually SYS_FCNTL, but is overridden on 32-bit Linux -// systems by flock_linux_32bit.go to be SYS_FCNTL64. +// systems by fcntl_linux_32bit.go to be SYS_FCNTL64. var fcntl64Syscall uintptr = SYS_FCNTL // FcntlInt performs a fcntl syscall on fd with the provided command and argument.