diff options
author | Adin Scannell <ascannell@google.com> | 2019-04-04 17:04:30 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-04-04 17:05:38 -0700 |
commit | 75c8ac38e0f6cc4eb3726c89aee41357cd592c4b (patch) | |
tree | b8d9a574de6efa6272b2b34984d2a975c6a1f76d /pkg/sentry/syscalls/linux/sys_utsname.go | |
parent | e9508967b0a1c9a8398adf5f6c28be79353f8a1f (diff) |
BUILD: Add useful go_path target
Change-Id: Ibd6d8a1a63826af6e62a0f0669f8f0866c8091b4
PiperOrigin-RevId: 242037969
Diffstat (limited to 'pkg/sentry/syscalls/linux/sys_utsname.go')
-rw-r--r-- | pkg/sentry/syscalls/linux/sys_utsname.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/syscalls/linux/sys_utsname.go b/pkg/sentry/syscalls/linux/sys_utsname.go index 689f2f838..f7545b965 100644 --- a/pkg/sentry/syscalls/linux/sys_utsname.go +++ b/pkg/sentry/syscalls/linux/sys_utsname.go @@ -35,7 +35,7 @@ func Uname(t *kernel.Task, args arch.SyscallArguments) (uintptr, *kernel.Syscall copy(u.Nodename[:], uts.HostName()) copy(u.Release[:], version.Release) copy(u.Version[:], version.Version) - copy(u.Machine[:], "x86_64") // +build tag above. + copy(u.Machine[:], "x86_64") // build tag above. copy(u.Domainname[:], uts.DomainName()) // Copy out the result. |