Thread (232 messages) flat view 232 messages, 10 authors, 2021-11-11
STALE1774d

Revision v5 of 6 in this series.

Revisions (6)
  1. v5 current
  2. v6 [diff vs current]
  3. v7 [diff vs current]
  4. v8 [diff vs current]
  5. v9 [diff vs current]
  6. v10 [diff vs current]

[PATCH v5 13/21] object-file.c: split up ternary in parse_loose_header()

From: Ævar Arnfjörð Bjarmason <hidden>
Date: 2021-07-10 13:37:51
Subsystem: the rest · Maintainer: Linus Torvalds

This minor formatting change serves to make a subsequent patch easier
to read.

Signed-off-by: Ævar Arnfjörð Bjarmason <redacted>
---
 object-file.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/object-file.c b/object-file.c
index ef3a1517fed..e51cf2ca33e 100644
--- a/object-file.c
+++ b/object-file.c
@@ -1381,7 +1381,10 @@ int parse_loose_header(const char *hdr,
 	/*
 	 * The length must be followed by a zero byte
 	 */
-	return *hdr ? -1 : type;
+	if (*hdr)
+		return -1;
+
+	return type;
 }
 
 static int loose_object_info(struct repository *r,
-- 
2.32.0.636.g43e71d69cff
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help