Remove unnecessary fileInfo indirection (it's already interface)

This commit is contained in:
2023-10-05 21:28:36 -05:00
parent 1a2896ca8e
commit 60870cdabd
3 changed files with 8 additions and 8 deletions

View File

@@ -106,7 +106,7 @@ func GetOwner(entry *Entry, fileInfo *os.FileInfo) {
entry.GID = -1
}
func SetOwner(fullPath string, entry *Entry, fileInfo *os.FileInfo) bool {
func SetOwner(fullPath string, entry *Entry, fileInfo os.FileInfo) bool {
return true
}