mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 06:10:30 -04:00
11 lines
459 B
Go
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)
|
|
}
|
|
|