Merge pull request #21386 from Microsoft/jjh/mountfix

Windows: Fix mountinfo
This commit is contained in:
Vincent Demeester 2016-03-23 10:14:20 +01:00
commit 6ad9def11a
2 changed files with 7 additions and 1 deletions

View File

@ -1,4 +1,4 @@
// +build !linux,!freebsd freebsd,!cgo
// +build !windows,!linux,!freebsd freebsd,!cgo
package mount

View File

@ -0,0 +1,6 @@
package mount
func parseMountTable() ([]*Info, error) {
// Do NOT return an error!
return nil, nil
}