From a83befa0d111a0ba6fac52d763e93c76a2ef94d4 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 19 Dec 2025 12:52:30 +0100 Subject: all: use any instead of interface{} Any is the preferred over interface{} now in Go. --- tools/syz-kconf/parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/syz-kconf') diff --git a/tools/syz-kconf/parser.go b/tools/syz-kconf/parser.go index a37e5f2ed..eb21c1c1f 100644 --- a/tools/syz-kconf/parser.go +++ b/tools/syz-kconf/parser.go @@ -331,7 +331,7 @@ func parseNode(node yaml.Node) (name, val string, constraints []string, err erro type Errors []byte -func (errs *Errors) push(msg string, args ...interface{}) { +func (errs *Errors) push(msg string, args ...any) { *errs = append(*errs, fmt.Sprintf(msg+"\n", args...)...) } -- cgit mrf-deployment