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 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Tue Aug 15 06:25:46 2006
This archive was generated by hypermail 2.1.8 : 2006-08-15 06:38:52 EST