From ebaeafb3f56df6d07df3c39355650fff8927110f Mon Sep 17 00:00:00 2001 From: Julian Yap Date: Thu, 23 May 2019 00:51:00 -0700 Subject: [PATCH] Update package --- vendor/golang.org/x/sys/cpu/cpu_arm64.go | 7 ------- vendor/golang.org/x/sys/unix/syscall_solaris.go | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) delete mode 100644 vendor/golang.org/x/sys/cpu/cpu_arm64.go diff --git a/vendor/golang.org/x/sys/cpu/cpu_arm64.go b/vendor/golang.org/x/sys/cpu/cpu_arm64.go deleted file mode 100644 index 1d2ab2902a..0000000000 --- a/vendor/golang.org/x/sys/cpu/cpu_arm64.go +++ /dev/null @@ -1,7 +0,0 @@ -// Copyright 2018 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package cpu - -const cacheLineSize = 64 diff --git a/vendor/golang.org/x/sys/unix/syscall_solaris.go b/vendor/golang.org/x/sys/unix/syscall_solaris.go index 2d56c9df76..e478012753 100644 --- a/vendor/golang.org/x/sys/unix/syscall_solaris.go +++ b/vendor/golang.org/x/sys/unix/syscall_solaris.go @@ -263,7 +263,7 @@ func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (int, erro //sys gethostname(buf []byte) (n int, err error) -func Gubiqostname() (name string, err error) { +func Gethostname() (name string, err error) { var buf [MaxHostNameLen]byte n, err := gethostname(buf[:]) if n != 0 {