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. --- prog/decodeexec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'prog/decodeexec.go') diff --git a/prog/decodeexec.go b/prog/decodeexec.go index e6921c314..4e7bc8718 100644 --- a/prog/decodeexec.go +++ b/prog/decodeexec.go @@ -35,7 +35,7 @@ type ExecCopyout struct { Size uint64 } -type ExecArg interface{} // one of ExecArg* +type ExecArg any // one of ExecArg* type ExecArgConst struct { Size uint64 -- cgit mrf-deployment