diff options
Diffstat (limited to 'reachability/walk_verify.go')
| -rw-r--r-- | reachability/walk_verify.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reachability/walk_verify.go b/reachability/walk_verify.go index 46798f5a..82eb7566 100644 --- a/reachability/walk_verify.go +++ b/reachability/walk_verify.go @@ -13,7 +13,7 @@ func (walk *Walk) validateCommitObject(id objectid.ObjectID) error { } if ty != objecttype.TypeCommit { - return &ErrObjectType{OID: id, Got: ty, Want: objecttype.TypeCommit} + return &ObjectTypeError{OID: id, Got: ty, Want: objecttype.TypeCommit} } content, err := walk.readBytesContent(id) |
