diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2017-05-07 00:10:17 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-08 08:12:57 +0200 |
commit | 740ee055c6178fc2dd43c5ccfbd367c4c64d6e0d (patch) | |
tree | e0ce96e53ce7957480f693147ea9693a33c6a211 /reachable.c | |
parent | builtin/reflog: convert tree_is_complete to take struct object_id (diff) | |
download | git-740ee055c6178fc2dd43c5ccfbd367c4c64d6e0d.tar.xz git-740ee055c6178fc2dd43c5ccfbd367c4c64d6e0d.zip |
Convert lookup_tree to struct object_id
Convert the lookup_tree function to take a pointer to struct object_id.
The commit was created with manual changes to tree.c, tree.h, and
object.c, plus the following semantic patch:
@@
@@
- lookup_tree(EMPTY_TREE_SHA1_BIN)
+ lookup_tree(&empty_tree_oid)
@@
expression E1;
@@
- lookup_tree(E1.hash)
+ lookup_tree(&E1)
@@
expression E1;
@@
- lookup_tree(E1->hash)
+ lookup_tree(E1)
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'reachable.c')
-rw-r--r-- | reachable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reachable.c b/reachable.c index 8ea0bdd7c0..3bbc84417f 100644 --- a/reachable.c +++ b/reachable.c @@ -85,7 +85,7 @@ static void add_recent_object(const struct object_id *oid, obj = parse_object_or_die(oid->hash, NULL); break; case OBJ_TREE: - obj = (struct object *)lookup_tree(oid->hash); + obj = (struct object *)lookup_tree(oid); break; case OBJ_BLOB: obj = (struct object *)lookup_blob(oid); |