Windows: Volumes PR fix one of Tibors nits
Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
parent
c5accd5c91
commit
cc1bd6eec5
2 changed files with 4 additions and 4 deletions
|
@ -4,8 +4,8 @@ package system
|
||||||
|
|
||||||
import "syscall"
|
import "syscall"
|
||||||
|
|
||||||
// UnmountWithSyscall is a platform-specific helper function to call
|
// Unmount is a platform-specific helper function to call
|
||||||
// the unmount syscall.
|
// the unmount syscall.
|
||||||
func UnmountWithSyscall(dest string) {
|
func Unmount(dest string) {
|
||||||
syscall.Unmount(dest, 0)
|
syscall.Unmount(dest, 0)
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
package system
|
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
|
// the unmount syscall. Not supported on Windows
|
||||||
func UnmountWithSyscall(dest string) {
|
func Unmount(dest string) {
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue