aboutsummaryrefslogtreecommitdiffstats
path: root/sys/syz-extract
diff options
context:
space:
mode:
Diffstat (limited to 'sys/syz-extract')
-rw-r--r--sys/syz-extract/extract.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/syz-extract/extract.go b/sys/syz-extract/extract.go
index aa020b029..db0274df1 100644
--- a/sys/syz-extract/extract.go
+++ b/sys/syz-extract/extract.go
@@ -95,7 +95,7 @@ func main() {
tool.Fail(err)
}
- jobC := make(chan interface{}, len(arches)+nfiles)
+ jobC := make(chan any, len(arches)+nfiles)
for _, arch := range arches {
jobC <- arch
}
@@ -152,7 +152,7 @@ func main() {
}
}
-func worker(extractor Extractor, jobC chan interface{}) {
+func worker(extractor Extractor, jobC chan any) {
for job := range jobC {
switch j := job.(type) {
case *Arch: