github.com/anchore/syft@v1.38.2/syft/internal/fileresolver/get_xid_win.go (about)

     1  //go:build windows
     2  
     3  package fileresolver
     4  
     5  import (
     6  	"os"
     7  )
     8  
     9  // getXid is a placeholder for windows file information
    10  func getXid(info os.FileInfo) (uid, gid int) {
    11  	return -1, -1
    12  }