Merge pull request #21386 from Microsoft/jjh/mountfix

Windows: Fix mountinfo
Upstream-commit: 6ad9def11a4cff5f2e45f756b3de28888fc584b9
Component: engine
This commit is contained in:
Vincent Demeester
2016-03-23 10:14:20 +01:00
2 changed files with 7 additions and 1 deletions
@@ -1,4 +1,4 @@
// +build !linux,!freebsd freebsd,!cgo
// +build !windows,!linux,!freebsd freebsd,!cgo
package mount
@@ -0,0 +1,6 @@
package mount
func parseMountTable() ([]*Info, error) {
// Do NOT return an error!
return nil, nil
}