mirror of
https://github.com/stashapp/stash.git
synced 2025-12-11 19:02:18 +01:00
9 lines
126 B
Go
9 lines
126 B
Go
// +build darwin linux
|
|
|
|
package godirwalk
|
|
|
|
import "syscall"
|
|
|
|
func inoFromDirent(de *syscall.Dirent) uint64 {
|
|
return de.Ino
|
|
}
|