Make sha1_array_append take a struct object_id *
Convert the callers to pass struct object_id by changing the function declaration and definition and applying the following semantic patch: @@ expression E1, E2; @@ - sha1_array_append(E1, E2.hash) + sha1_array_append(E1, &E2) @@ expression E1, E2; @@ - sha1_array_append(E1, E2->hash) + sha1_array_append(E1, E2) 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
ee3051bd23
commit
98a72ddc12
@ -2739,12 +2739,12 @@ static void record_recent_object(struct object *obj,
|
||||
const char *name,
|
||||
void *data)
|
||||
{
|
||||
sha1_array_append(&recent_objects, obj->oid.hash);
|
||||
sha1_array_append(&recent_objects, &obj->oid);
|
||||
}
|
||||
|
||||
static void record_recent_commit(struct commit *commit, void *data)
|
||||
{
|
||||
sha1_array_append(&recent_objects, commit->object.oid.hash);
|
||||
sha1_array_append(&recent_objects, &commit->object.oid);
|
||||
}
|
||||
|
||||
static void get_object_list(int ac, const char **av)
|
||||
|
||||
Reference in New Issue
Block a user