f-15: fix: fix variable

Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
This commit is contained in:
GnomeZworc 2026-03-31 22:04:12 +02:00
commit 1e7575bc7d
Signed by: nicolas.boufideline
GPG key ID: 4406BBBF8845D632

View file

@ -2,6 +2,6 @@
package netns
func call(name string, fn func() error) error {
func call(_ string, fn func() error) error {
return fn()
}