fs: unexport DeviceID

This commit is contained in:
Michael Eischer 2024-08-27 14:35:10 +02:00
parent 70fbad6623
commit e79dca644e
3 changed files with 6 additions and 6 deletions

View file

@ -10,9 +10,9 @@ import (
"github.com/restic/restic/internal/errors"
)
// DeviceID extracts the device ID from an os.FileInfo object by casting it
// deviceID extracts the device ID from an os.FileInfo object by casting it
// to syscall.Stat_t
func DeviceID(fi os.FileInfo) (deviceID uint64, err error) {
func deviceID(fi os.FileInfo) (deviceID uint64, err error) {
if fi == nil {
return 0, errors.New("unable to determine device: fi is nil")
}