From 01c2188aac983c9275a00159ba22abe98a1e8dde Mon Sep 17 00:00:00 2001 From: christophe-duc Date: Thu, 8 Jan 2026 14:11:25 -0400 Subject: [PATCH] fixed a typo --- pkg/commands/runtime_libpod.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/commands/runtime_libpod.go b/pkg/commands/runtime_libpod.go index a4b0c3a4..44d06b8a 100644 --- a/pkg/commands/runtime_libpod.go +++ b/pkg/commands/runtime_libpod.go @@ -499,7 +499,7 @@ func (r *LibpodRuntime) RemovePod(ctx context.Context, id string, force bool) er if err != nil { return err } - _, err = r.runtime.RemovePod(ctx, pod, true, force, 0) + _, err = r.runtime.RemovePod(ctx, pod, true, force, nil) return err }