The variables declared in parse_tree_gently() had a single space after
the TAB. This dates back to their introduction in bd2c39f58f9 ([PATCH]
don't load and decompress objects twice with parse_object(),
2005-05-06). Let's fix them to follow the style of the rest of the
file.
Signed-off-by: Ævar Arnfjörð Bjarmason <redacted>
---
tree.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tree.c b/tree.c
index a52479812ce..4820d66a10c 100644
--- a/tree.c
+++ b/tree.c
@@ -216,9 +216,9 @@ int parse_tree_buffer(struct tree *item, void *buffer, unsigned long size)
int parse_tree_gently(struct tree *item, int quiet_on_missing)
{
- enum object_type type;
- void *buffer;
- unsigned long size;
+ enum object_type type;
+ void *buffer;
+ unsigned long size;
if (item->object.parsed)
return 0;--
2.31.0.rc1.210.g0f8085a843c