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

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)