1
0
mirror of https://github.com/git/git.git synced 2024-10-19 21:08:12 +02:00

sha1_name.c: indentation fix

Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Junio C Hamano 2012-06-18 11:30:15 -07:00
parent 828ea97de4
commit a1b475eeb4

@ -103,10 +103,10 @@ static int find_short_packed_object(int len, const unsigned char *match, unsigne
} }
if (first < num) { if (first < num) {
const unsigned char *now, *next; 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)) { if (match_sha(len, match, now)) {
next = nth_packed_object_sha1(p, first+1); 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 */ /* unique within this pack */
if (!found) { if (!found) {
found_sha1 = now; found_sha1 = now;