Replace godep with dep
This commit is contained in:
parent
1e7489927c
commit
bf5616c65b
14883 changed files with 3937406 additions and 361781 deletions
2
vendor/golang.org/x/sys/unix/dev_darwin.go
generated
vendored
2
vendor/golang.org/x/sys/unix/dev_darwin.go
generated
vendored
|
|
@ -20,5 +20,5 @@ func Minor(dev uint64) uint32 {
|
|||
// Mkdev returns a Darwin device number generated from the given major and minor
|
||||
// components.
|
||||
func Mkdev(major, minor uint32) uint64 {
|
||||
return uint64((major << 24) | minor)
|
||||
return (uint64(major) << 24) | uint64(minor)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue