/
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]
/
tree.c
diff --git
a/tree.c
b/tree.c
index
0ebb8c5
..
4720945
100644
(file)
--- a/
tree.c
+++ b/
tree.c
@@
-199,8
+199,7
@@
struct tree *lookup_tree(struct repository *r, const struct object_id *oid)
{
struct object *obj = lookup_object(r, oid);
if (!obj)
- return create_object(r, oid->hash,
- alloc_tree_node(r));
+ return create_object(r, oid, alloc_tree_node(r));
return object_as_type(r, obj, OBJ_TREE, 0);
}