You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
866 B
12 lines
866 B
Index: src/github.com/kubernetes/kompose/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/mknod.go |
|
--- src/github.com/kubernetes/kompose/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/mknod.go.orig 2019-03-02 09:54:16.000000000 +0100 |
|
+++ src/github.com/kubernetes/kompose/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/mknod.go 2019-03-02 10:01:12.136026000 +0100 |
|
@@ -9,7 +9,7 @@ |
|
// 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
|
|
|