From 4121cf9df313ee111c01fde1f255d010c8d941cd Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Fri, 14 Feb 2025 19:01:57 +0100 Subject: all: remove loop variables scoping --- tools/syz-db-export/reprolist.go | 1 - 1 file changed, 1 deletion(-) (limited to 'tools/syz-db-export') diff --git a/tools/syz-db-export/reprolist.go b/tools/syz-db-export/reprolist.go index 24a548423..1b6e90a26 100644 --- a/tools/syz-db-export/reprolist.go +++ b/tools/syz-db-export/reprolist.go @@ -51,7 +51,6 @@ func exportNamespace() error { iBugChan := make(chan int) g, _ := errgroup.WithContext(context.Background()) for i := 0; i < *flagParallel; i++ { - i := i g.Go(func() error { for iBug := range iBugChan { bug, err := cli.Bug(bugs[iBug].Link) -- cgit mrf-deployment