From ef1b853c15d443b057e5a6306c89b869168a8270 Mon Sep 17 00:00:00 2001 From: René Scharfe Date: Thu, 12 Nov 2020 13:22:16 +0100 Subject: midx: use hashwrite_be64() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Call hashwrite_be64() to write 64-bit values instead of open-coding it using hashwrite_be32() and sizeof. This shortens the code and makes its intent clearer. Signed-off-by: René Scharfe Signed-off-by: Junio C Hamano --- midx.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'midx.c') diff --git a/midx.c b/midx.c index 0de42ffdfb..f56321dc8c 100644 --- a/midx.c +++ b/midx.c @@ -790,9 +790,7 @@ static size_t write_midx_large_offsets(struct hashfile *f, uint32_t nr_large_off if (!(offset >> 31)) continue; - hashwrite_be32(f, offset >> 32); - hashwrite_be32(f, offset & 0xffffffffUL); - written += 2 * sizeof(uint32_t); + written += hashwrite_be64(f, offset); nr_large_offset--; } @@ -980,8 +978,7 @@ static int write_midx_internal(const char *object_dir, struct multi_pack_index * chunk_offsets[i]); hashwrite_be32(f, chunk_ids[i]); - hashwrite_be32(f, chunk_offsets[i] >> 32); - hashwrite_be32(f, chunk_offsets[i]); + hashwrite_be64(f, chunk_offsets[i]); written += MIDX_CHUNKLOOKUP_WIDTH; } -- cgit v1.3-5-g9baa