aboutsummaryrefslogtreecommitdiffstats
path: root/tools/syz-db-export
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2025-02-14 19:01:57 +0100
committerTaras Madan <tarasmadan@google.com>2025-02-17 08:18:57 +0000
commit4121cf9df313ee111c01fde1f255d010c8d941cd (patch)
treedcd0d104c8c35997103297dfb7dc1f0de6b77b8e /tools/syz-db-export
parent9f05da3db0234203729d2ad179ab5a2f72bf607f (diff)
all: remove loop variables scoping
Diffstat (limited to 'tools/syz-db-export')
-rw-r--r--tools/syz-db-export/reprolist.go1
1 files changed, 0 insertions, 1 deletions
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)