Windows: Volumes PR fix one of Tibors nits

Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
John Howard 2015-10-26 13:34:49 -07:00
parent c5accd5c91
commit cc1bd6eec5
2 changed files with 4 additions and 4 deletions

View file

@ -4,8 +4,8 @@ package system
import "syscall"
// UnmountWithSyscall is a platform-specific helper function to call
// Unmount is a platform-specific helper function to call
// the unmount syscall.
func UnmountWithSyscall(dest string) {
func Unmount(dest string) {
syscall.Unmount(dest, 0)
}

View file

@ -1,6 +1,6 @@
package system
// UnmountWithSyscall is a platform-specific helper function to call
// Unmount is a platform-specific helper function to call
// the unmount syscall. Not supported on Windows
func UnmountWithSyscall(dest string) {
func Unmount(dest string) {
}