From: Jeff King Date: Thu, 12 Jan 2023 16:06:49 +0000 (-0500) Subject: object-file: fix indent-with-space X-Git-Tag: v2.40.0-rc0~84^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=15b63689a1698f91c6882bbf99f43226033d7cb1;p=thirdparty%2Fgit.git object-file: fix indent-with-space Commit b25562e63f (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 Signed-off-by: Jeff King Acked-by: Ævar Arnfjörð Bjarmason Signed-off-by: Junio C Hamano --- diff --git a/object-file.c b/object-file.c index 80b08fc389..ce9efae994 100644 --- a/object-file.c +++ b/object-file.c @@ -1708,7 +1708,7 @@ void *repo_read_object_file(struct repository *r, oi.sizep = size; oi.contentp = &data; if (oid_object_info_extended(r, oid, &oi, flags)) - return NULL; + return NULL; return data; }