Skip to content

Commit a8437f3

Browse files
ttaylorrgitster
authored andcommitted
midx.c: fix whitespace typo
This was unintentionally introduced via 893b563 (midx: inline nth_midxed_pack_entry(), 2021-09-11) where "struct repository *r" became "struct repository * r". The latter does not adhere to our usual style conventions, so fix that up to look more like our usual declarations. Signed-off-by: Taylor Blau <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 3dcec76 commit a8437f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

midx.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ uint32_t nth_midxed_pack_int_id(struct multi_pack_index *m, uint32_t pos)
278278
(off_t)pos * MIDX_CHUNK_OFFSET_WIDTH);
279279
}
280280

281-
int fill_midx_entry(struct repository * r,
281+
int fill_midx_entry(struct repository *r,
282282
const struct object_id *oid,
283283
struct pack_entry *e,
284284
struct multi_pack_index *m)

0 commit comments

Comments
 (0)