diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2017-03-31 03:39:56 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-03-31 17:33:55 +0200 |
commit | 98a72ddc12e13231537150607f4a6a8ff8b43854 (patch) | |
tree | b519703af87417aa54f59f80f1a2d6d9ff7f7a8c /sha1-array.c | |
parent | sha1-array: convert internal storage for struct sha1_array to object_id (diff) | |
download | git-98a72ddc12e13231537150607f4a6a8ff8b43854.tar.xz git-98a72ddc12e13231537150607f4a6a8ff8b43854.zip |
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>
Diffstat (limited to 'sha1-array.c')
-rw-r--r-- | sha1-array.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sha1-array.c b/sha1-array.c index 093d158003..26e596b264 100644 --- a/sha1-array.c +++ b/sha1-array.c @@ -2,10 +2,10 @@ #include "sha1-array.h" #include "sha1-lookup.h" -void sha1_array_append(struct sha1_array *array, const unsigned char *sha1) +void sha1_array_append(struct sha1_array *array, const struct object_id *oid) { ALLOC_GROW(array->oid, array->nr + 1, array->alloc); - hashcpy(array->oid[array->nr++].hash, sha1); + oidcpy(&array->oid[array->nr++], oid); array->sorted = 0; } |