/
uis
/
git
/
x
/
uis
/
git
/
git.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
object: convert create_object() to use object_id
[git/git.git]
/
blob.c
diff --git
a/blob.c
b/blob.c
index
b9c7180
..
36f9abd
100644
(file)
--- a/
blob.c
+++ b/
blob.c
@@
-9,8
+9,7
@@
struct blob *lookup_blob(struct repository *r, const struct object_id *oid)
{
struct object *obj = lookup_object(r, oid);
if (!obj)
{
struct object *obj = lookup_object(r, oid);
if (!obj)
- return create_object(r, oid->hash,
- alloc_blob_node(r));
+ return create_object(r, oid, alloc_blob_node(r));
return object_as_type(r, obj, OBJ_BLOB, 0);
}
return object_as_type(r, obj, OBJ_BLOB, 0);
}