build: upgrade protbuf dependencies

This commit is contained in:
2022-06-07 19:27:50 +02:00
parent f048268629
commit b868d34594
27 changed files with 89 additions and 14 deletions

View File

@ -381,7 +381,7 @@ func (d *Decoder) currentOpenKind() (Kind, byte) {
case '[':
return ListOpen, ']'
}
panic(fmt.Sprintf("Decoder: openStack contains invalid byte %s", string(openCh)))
panic(fmt.Sprintf("Decoder: openStack contains invalid byte %c", openCh))
}
func (d *Decoder) pushOpenStack(ch byte) {