tools/stubmaker: fix dropped error (#22112)

This commit is contained in:
Lars Lehtonen 2023-07-28 07:57:52 -07:00 committed by GitHub
parent 032dd8fd7c
commit 194e8cdb02
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -62,6 +62,9 @@ func main() {
}
inputLines, err := readLines(bytes.NewBuffer(b))
if err != nil {
fatal(err)
}
funcs := getFuncs(inputLines)
if needed, err := isStubNeeded(funcs); err != nil {
fatal(err)