Skip to content

Commit

Permalink
missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
richardlehane committed May 1, 2022
1 parent 1ced1e7 commit b5577ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/vectorArray.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func MakeVariant(b []byte) (Type, error) {
}
f, ok := MakeTypes[id]
if !ok {
Variant{}, ErrUnknownType
return Variant{}, ErrUnknownType
}
t, err := f(b[4:])
if err != nil {
Expand Down

0 comments on commit b5577ac

Please sign in to comment.