diff options
Diffstat (limited to 'libpod/runtime_pod_unsupported.go')
-rw-r--r-- | libpod/runtime_pod_unsupported.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/runtime_pod_unsupported.go b/libpod/runtime_pod_unsupported.go index b22f151d8..7cecb7c56 100644 --- a/libpod/runtime_pod_unsupported.go +++ b/libpod/runtime_pod_unsupported.go @@ -11,6 +11,6 @@ func (r *Runtime) NewPod(options ...PodCreateOption) (*Pod, error) { return nil, ErrOSNotSupported } -func (r *Runtime) RemovePod(ctx context.Context, p *Pod, removeCtrs, force bool) error { +func (r *Runtime) removePod(ctx context.Context, p *Pod, removeCtrs, force bool) error { return ErrOSNotSupported } |