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. --- pkg/runtest/run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/runtest') diff --git a/pkg/runtest/run.go b/pkg/runtest/run.go index ffd791c68..7b3f1517f 100644 --- a/pkg/runtest/run.go +++ b/pkg/runtest/run.go @@ -80,7 +80,7 @@ func (ctx *Context) Init() { ctx.buildSem = make(chan bool, runtime.GOMAXPROCS(0)) } -func (ctx *Context) log(msg string, args ...interface{}) { +func (ctx *Context) log(msg string, args ...any) { ctx.LogFunc(fmt.Sprintf(msg, args...)) } -- cgit mrf-deployment