From ca2aa6a099905574359d40394e432e88a9e65e83 Mon Sep 17 00:00:00 2001 From: Pengfei Ni Date: Fri, 21 Oct 2016 12:20:19 +0800 Subject: [PATCH] Fix compile error on ono-linux platform Fixes #35252. --- pkg/util/mount/mount_unsupported.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkg/util/mount/mount_unsupported.go b/pkg/util/mount/mount_unsupported.go index c22ba30bdb..ceed58fb56 100644 --- a/pkg/util/mount/mount_unsupported.go +++ b/pkg/util/mount/mount_unsupported.go @@ -18,7 +18,9 @@ limitations under the License. package mount -type Mounter struct{} +type Mounter struct { + mounterPath string +} func (mounter *Mounter) Mount(source string, target string, fstype string, options []string) error { return nil