From cc1bd6eec5fe3b5394e33036062cad4f6ed03cc8 Mon Sep 17 00:00:00 2001 From: John Howard Date: Mon, 26 Oct 2015 13:34:49 -0700 Subject: [PATCH] Windows: Volumes PR fix one of Tibors nits Signed-off-by: John Howard --- system/syscall_unix.go | 4 ++-- system/syscall_windows.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/system/syscall_unix.go b/system/syscall_unix.go index e1b90b3..5005476 100644 --- a/system/syscall_unix.go +++ b/system/syscall_unix.go @@ -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) } diff --git a/system/syscall_windows.go b/system/syscall_windows.go index 26bd80b..3a3a55b 100644 --- a/system/syscall_windows.go +++ b/system/syscall_windows.go @@ -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) { }