diff options
Diffstat (limited to 'tools/syz-kconf/parser.go')
| -rw-r--r-- | tools/syz-kconf/parser.go | 2 |
1 files changed, 1 insertions, 1 deletions
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...)...) } |
