DORMANTno replies

[PATCH 08/28] remove conditional return

From: David Rientjes <rientjes@google.com>
Date: 2016-06-15 22:42:37
Subsystem: the rest · Maintainer: Linus Torvalds

Removes conditional return from builtin-pack-objects.c

		David

Signed-off-by: David Rientjes <rientjes@google.com>
---
 builtin-pack-objects.c |    7 +------
 1 files changed, 1 insertions(+), 6 deletions(-)
diff --git a/builtin-pack-objects.c b/builtin-pack-objects.c
index 2f99212..eb287a2 100644
--- a/builtin-pack-objects.c
+++ b/builtin-pack-objects.c
@@ -138,12 +138,7 @@ static int cmp_offset(const void *a_, co
 {
 	unsigned long a = *(unsigned long *) a_;
 	unsigned long b = *(unsigned long *) b_;
-	if (a < b)
-		return -1;
-	else if (a == b)
-		return 0;
-	else
-		return 1;
+	return (a < b) ? -1 : !(a == b);
 }
 
 /*
-- 
1.4.2.g89bb-dirty
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help