sha1_file: convert read_object_with_reference to object_id
Convert read_object_with_reference to take pointers to struct object_id. Update the internals of the function accordingly. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
916bc35b29
commit
02f0547eaa
@ -1351,7 +1351,7 @@ static void add_preferred_base(struct object_id *oid)
|
||||
if (window <= num_preferred_base++)
|
||||
return;
|
||||
|
||||
data = read_object_with_reference(oid->hash, tree_type, &size, tree_oid.hash);
|
||||
data = read_object_with_reference(oid, tree_type, &size, &tree_oid);
|
||||
if (!data)
|
||||
return;
|
||||
|
||||
|
Reference in New Issue
Block a user