blob: 7c36b7495ac73c541206e7fe50643aed0b6b7fc8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- vendor/github.com/docker/docker/pkg/system/mknod.go.orig 2018-10-30 20:25:08 UTC
+++ vendor/github.com/docker/docker/pkg/system/mknod.go
@@ -8,7 +8,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 {
+func Mknod(path string, mode uint32, dev uint64) error {
return unix.Mknod(path, mode, dev)
}
|