From: Taylor Blau Date: Wed, 29 May 2024 22:55:45 +0000 (-0400) Subject: pack-bitmap.c: reimplement `midx_bitmap_filename()` with helper X-Git-Tag: v2.46.0-rc0~71^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4cac79a50e242c8864e2c0f2fbf40e2d22b5fee6;p=thirdparty%2Fgit.git pack-bitmap.c: reimplement `midx_bitmap_filename()` with helper Now that we have the `get_midx_filename_ext()` helper, we can reimplement the `midx_bitmap_filename()` function in terms of it. Signed-off-by: Taylor Blau Signed-off-by: Junio C Hamano --- diff --git a/pack-bitmap.c b/pack-bitmap.c index 35c5ef9d3c..fe8e8a51d3 100644 --- a/pack-bitmap.c +++ b/pack-bitmap.c @@ -309,9 +309,8 @@ static int load_bitmap_entries_v1(struct bitmap_index *index) char *midx_bitmap_filename(struct multi_pack_index *midx) { struct strbuf buf = STRBUF_INIT; - - get_midx_filename(&buf, midx->object_dir); - strbuf_addf(&buf, "-%s.bitmap", hash_to_hex(get_midx_checksum(midx))); + get_midx_filename_ext(&buf, midx->object_dir, get_midx_checksum(midx), + MIDX_EXT_BITMAP); return strbuf_detach(&buf, NULL); }