Skip to content

Commit 15b6368

Browse files
peffgitster
authored andcommitted
object-file: fix indent-with-space
Commit b25562e (object-file: inline calls to read_object(), 2023-01-07) accidentally indented a conditional block with spaces instead of a tab. Reported-by: Ævar Arnfjörð Bjarmason <[email protected]> Signed-off-by: Jeff King <[email protected]> Acked-by: Ævar Arnfjörð Bjarmason <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent c2f32be commit 15b6368

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

object-file.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1708,7 +1708,7 @@ void *repo_read_object_file(struct repository *r,
17081708
oi.sizep = size;
17091709
oi.contentp = &data;
17101710
if (oid_object_info_extended(r, oid, &oi, flags))
1711-
return NULL;
1711+
return NULL;
17121712

17131713
return data;
17141714
}

0 commit comments

Comments
 (0)