diff options
| author | Stefan Beller <sbeller@google.com> | 2018-05-08 12:37:27 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2018-05-09 12:12:36 +0900 |
| commit | f0de1d62ae5982630cfb2c713ddcda853b9ee0cf (patch) | |
| tree | 04da14d0955eadeb45ea7659cf86d11519540b19 /blob.c | |
| parent | object: add repository argument to grow_object_hash (diff) | |
| download | git-f0de1d62ae5982630cfb2c713ddcda853b9ee0cf.tar.gz git-f0de1d62ae5982630cfb2c713ddcda853b9ee0cf.zip | |
alloc: add repository argument to alloc_blob_node
This is a small mechanical change; it doesn't change the
implementation to handle repositories other than the_repository yet.
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 'blob.c')
| -rw-r--r-- | blob.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ struct blob *lookup_blob(const struct object_id *oid) struct object *obj = lookup_object(oid->hash); if (!obj) return create_object(the_repository, oid->hash, - alloc_blob_node()); + alloc_blob_node(the_repository)); return object_as_type(obj, OBJ_BLOB, 0); } |
