summaryrefslogtreecommitdiff
path: root/internal/scan/fileid_other.go
blob: 503a9b4025093c72594fb79c84ade0f2db5171d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// SPDX-License-Identifier: GPL-3.0-or-later

//go:build !unix

package scan

import "io/fs"

// fileID reports no identity where the platform has no inodes.
func fileID(fs.FileInfo) (dev, ino uint64) { return 0, 0 }