diff options
author | Stefan Beller <sbeller@google.com> | 2018-06-28 18:21:52 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-06-29 10:43:38 -0700 |
commit | 5abddd1eb72ca47cc84a9fc888c30ebaadde2eec (patch) | |
tree | 3aa159b370a0ecc3ac88e8b3453c049f72af15c3 /reachable.c | |
parent | 109cd76dd3467bd05f8d2145b857006649741d5c (diff) | |
download | git-5abddd1eb72ca47cc84a9fc888c30ebaadde2eec.tar.gz |
object: add repository argument to lookup_object
Add a repository argument to allow callers of lookup_object to be more
specific about which repository to handle. This is a small mechanical
change; it doesn't change the implementation to handle repositories
other than the_repository yet.
As with the previous commits, use a macro to catch callers passing a
repository other than the_repository at compile time.
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'reachable.c')
-rw-r--r-- | reachable.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/reachable.c b/reachable.c index ffb976c33c..2ee5569559 100644 --- a/reachable.c +++ b/reachable.c @@ -108,7 +108,7 @@ static int add_recent_loose(const struct object_id *oid, const char *path, void *data) { struct stat st; - struct object *obj = lookup_object(oid->hash); + struct object *obj = lookup_object(the_repository, oid->hash); if (obj && obj->flags & SEEN) return 0; @@ -133,7 +133,7 @@ static int add_recent_packed(const struct object_id *oid, struct packed_git *p, uint32_t pos, void *data) { - struct object *obj = lookup_object(oid->hash); + struct object *obj = lookup_object(the_repository, oid->hash); if (obj && obj->flags & SEEN) return 0; |