diff mbox series

[1/4] midx.c: fix whitespace typo

Message ID 6e92b7707dbe6ec993cf4a36180f5c118e6011d7.1665612094.git.me@ttaylorr.com (mailing list archive)
State Accepted
Commit a8437f3cb1994cb0c93b27fdefaa0163eddcf92a
Headers show
Series midx: trace2 regions and grab-bag patches | expand

Commit Message

Taylor Blau Oct. 12, 2022, 10:01 p.m. UTC
This was unintentionally introduced via 893b563505 (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 <me@ttaylorr.com>
---
 midx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/midx.c b/midx.c
index 3a8dcfe98e..a9df753220 100644
--- a/midx.c
+++ b/midx.c
@@ -278,7 +278,7 @@  uint32_t nth_midxed_pack_int_id(struct multi_pack_index *m, uint32_t pos)
 			(off_t)pos * MIDX_CHUNK_OFFSET_WIDTH);
 }
 
-int fill_midx_entry(struct repository * r,
+int fill_midx_entry(struct repository *r,
 		    const struct object_id *oid,
 		    struct pack_entry *e,
 		    struct multi_pack_index *m)