summaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-03-26 14:06:09 +0000
committerGitHub <noreply@github.com>2021-03-26 14:06:09 +0000
commitfa6ba9b00fb5f77ead67b624be510ec50b2f4f5e (patch)
tree324494e8fc059c854052e94e0b2361d0e438abec /vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go
parent25525ff834cc979566bb09e5546ee0a72ef76a79 (diff)
parentb7dda21e33f9bddda9b49adbd0f18d5205b249f4 (diff)
downloadpodman-fa6ba9b00fb5f77ead67b624be510ec50b2f4f5e.tar.gz
podman-fa6ba9b00fb5f77ead67b624be510ec50b2f4f5e.tar.bz2
podman-fa6ba9b00fb5f77ead67b624be510ec50b2f4f5e.zip
Merge pull request #9826 from containers/dependabot/go_modules/github.com/vbauerster/mpb/v6-6.0.3
Bump github.com/vbauerster/mpb/v6 from 6.0.2 to 6.0.3
Diffstat (limited to 'vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go')
-rw-r--r--vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go b/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go
index 7099f555a..4e18d5c99 100644
--- a/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go
+++ b/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go
@@ -619,8 +619,9 @@ func __minor(version int, dev uint64) (val uint) {
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
-func ioctl(fd int, req uint, arg uintptr) (err error) {
- _, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procioctl)), 3, uintptr(fd), uintptr(req), uintptr(arg), 0, 0, 0)
+func ioctlRet(fd int, req uint, arg uintptr) (ret int, err error) {
+ r0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&procioctl)), 3, uintptr(fd), uintptr(req), uintptr(arg), 0, 0, 0)
+ ret = int(r0)
if e1 != 0 {
err = e1
}