ports/sysutils/container-diff/files/patch-vendor-github.com-docker-docker-pkg-system-mknod.go
2018-11-19 18:19:25 +00:00

11 lines
459 B
Go

--- 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)
}