genbindings: remove empty printf specifier from log message

This commit is contained in:
mappu 2024-08-20 20:19:53 +12:00
parent c59545c956
commit ae3de5a64c
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ nextMethod:
err := parseMethod(node, &mm)
if err != nil {
if errors.Is(err, ErrTooComplex) {
log.Printf("Skipping method %q with complex type", mm.MethodName)
log.Printf("Skipping ctor with complex type")
continue nextMethod
}