summaryrefslogtreecommitdiff
path: root/tree.h
diff options
context:
space:
mode:
authorStefan Beller <sbeller@google.com>2018-06-29 01:22:09 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-06-29 17:43:39 (GMT)
commitf58a6cb60222d32063437ae85859e6e7ac7ffc8e (patch)
treea39aa36a86ea1c8377edf88608052bb92ad67382 /tree.h
parent17126cdf78dc7b8cbe6b35bc44cb74d8d0fb11ee (diff)
downloadgit-f58a6cb60222d32063437ae85859e6e7ac7ffc8e.zip
git-f58a6cb60222d32063437ae85859e6e7ac7ffc8e.tar.gz
git-f58a6cb60222d32063437ae85859e6e7ac7ffc8e.tar.bz2
tree: allow lookup_tree to handle arbitrary repositories
Signed-off-by: Stefan Beller <sbeller@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'tree.h')
-rw-r--r--tree.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/tree.h b/tree.h
index 2ea21ed..d4807dc 100644
--- a/tree.h
+++ b/tree.h
@@ -12,8 +12,7 @@ struct tree {
unsigned long size;
};
-#define lookup_tree(r, oid) lookup_tree_##r(oid)
-struct tree *lookup_tree_the_repository(const struct object_id *oid);
+struct tree *lookup_tree(struct repository *r, const struct object_id *oid);
int parse_tree_buffer(struct tree *item, void *buffer, unsigned long size);