diff --git a/sysutils/ctop/files/patch-vendor_github.com_docker_docker_pkg_system_mknod.go b/sysutils/ctop/files/patch-vendor_github.com_docker_docker_pkg_system_mknod.go new file mode 100644 index 000000000000..668e0f7fe6ea --- /dev/null +++ b/sysutils/ctop/files/patch-vendor_github.com_docker_docker_pkg_system_mknod.go @@ -0,0 +1,11 @@ +--- vendor/github.com/docker/docker/pkg/system/mknod.go.orig 2019-03-01 16:45:25 UTC ++++ vendor/github.com/docker/docker/pkg/system/mknod.go +@@ -9,7 +9,7 @@ import ( + // Mknod creates a filesystem node (file, device special file or named pipe) named path + // with attributes specified by mode and dev. + func Mknod(path string, mode uint32, dev int) error { +- return syscall.Mknod(path, mode, dev) ++ return syscall.Mknod(path, mode, uint64(dev)) + } + + // Mkdev is used to build the value of linux devices (in /dev/) which specifies major