]> git.ipfire.org Git - thirdparty/git.git/commit
object-file.c: split up declaration of unrelated variables
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Fri, 4 Feb 2022 23:48:23 +0000 (00:48 +0100)
committerJunio C Hamano <gitster@pobox.com>
Sat, 26 Feb 2022 01:16:31 +0000 (17:16 -0800)
commitbbea0ddeb9bd9eefe568a9f4456cccf630704d8c
tree24714cc470ac808da1a3119d6d3aa85f9063cf44
parent5d01301f2b865aa8dba1654d3f447ce9d21db0b5
object-file.c: split up declaration of unrelated variables

Split up the declaration of the "ret" and "re_allocated"
variables. It's not our usual style to group variable declarations
simply because they share a type, we'd only prefer to do so when the
two are closely related (e.g. "int i, j"). This change makes a
subsequent and meaningful change's diff smaller.

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
object-file.c