From 1e7575bc7dd6bf87702fc15694ca56bc2797913d Mon Sep 17 00:00:00 2001 From: GnomeZworc Date: Tue, 31 Mar 2026 22:04:12 +0200 Subject: [PATCH] f-15: fix: fix variable Signed-off-by: GnomeZworc --- internal/netns/call_other.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/netns/call_other.go b/internal/netns/call_other.go index 14a8924..1b5794e 100644 --- a/internal/netns/call_other.go +++ b/internal/netns/call_other.go @@ -2,6 +2,6 @@ package netns -func call(name string, fn func() error) error { +func call(_ string, fn func() error) error { return fn() }