René Scharfe <l.s.r@xxxxxx> writes: > Expose the expected type of the second parameter of extend_abbrev_len() > instead of casting a void pointer internally. Just a single caller > passes in a void pointer, the rest pass the correct type. Let the > compiler help keeping it that way. > > Signed-off-by: René Scharfe <l.s.r@xxxxxx> > --- > object-name.c | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) We obviously do *not* have to, but I have to wonder if we want to go one step further to have that single caller explicitly cast it down to make the intent more clear, i.e.e.g., object-name.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git c/object-name.c w/object-name.c index 11aa0e6afc..8335d0239e 100644 --- c/object-name.c +++ w/object-name.c @@ -714,7 +714,9 @@ static int repo_extend_abbrev_len(struct repository *r UNUSED, const struct object_id *oid, void *cb_data) { - return extend_abbrev_len(oid, cb_data); + struct min_abbrev_data *mad = cb_data; + + return extend_abbrev_len(oid, mad); } static void find_abbrev_len_for_midx(struct multi_pack_index *m,