From: Junio C Hamano Date: Mon, 18 Jun 2012 18:30:15 +0000 (-0700) Subject: sha1_name.c: indentation fix X-Git-Tag: v1.7.12-rc0~22^2~26 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a1b475eeb40dc29246d4ce7465474479639769d0;p=git.git sha1_name.c: indentation fix Signed-off-by: Junio C Hamano --- diff --git a/sha1_name.c b/sha1_name.c index 03ffc2caa..5b0c845d8 100644 --- a/sha1_name.c +++ b/sha1_name.c @@ -103,10 +103,10 @@ static int find_short_packed_object(int len, const unsigned char *match, unsigne } if (first < num) { const unsigned char *now, *next; - now = nth_packed_object_sha1(p, first); + now = nth_packed_object_sha1(p, first); if (match_sha(len, match, now)) { next = nth_packed_object_sha1(p, first+1); - if (!next|| !match_sha(len, match, next)) { + if (!next|| !match_sha(len, match, next)) { /* unique within this pack */ if (!found) { found_sha1 = now;