about summary refs log tree commit diff
path: root/third_party/git/blob.c
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/blob.c')
-rw-r--r--third_party/git/blob.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/git/blob.c b/third_party/git/blob.c
index 36f9abda19..182718aba9 100644
--- a/third_party/git/blob.c
+++ b/third_party/git/blob.c
@@ -10,7 +10,7 @@ struct blob *lookup_blob(struct repository *r, const struct object_id *oid)
 	struct object *obj = lookup_object(r, oid);
 	if (!obj)
 		return create_object(r, oid, alloc_blob_node(r));
-	return object_as_type(r, obj, OBJ_BLOB, 0);
+	return object_as_type(obj, OBJ_BLOB, 0);
 }
 
 int parse_blob_buffer(struct blob *item, void *buffer, unsigned long size)