k3s/vendor/github.com/karrick/godirwalk/withIno.go
Darren Shepherd fa08d6076c Update vendor
2019-01-11 21:58:27 -07:00

10 lines
126 B
Go

// +build darwin linux
package godirwalk
import "syscall"
func inoFromDirent(de *syscall.Dirent) uint64 {
return de.Ino
}