Browse Source

git-unpack-objects: start removing debug output

At least the least interesting one.
maint
Linus Torvalds 20 years ago
parent
commit
641e1cac73
  1. 1
      unpack-objects.c

1
unpack-objects.c

@ -148,7 +148,6 @@ static int find_pack_entry(unsigned char *sha1, struct pack_entry **ent) @@ -148,7 +148,6 @@ static int find_pack_entry(unsigned char *sha1, struct pack_entry **ent)
do {
int mi = (lo + hi) / 2;
int cmp = memcmp(index + 24 * mi + 4, sha1, 20);
printf("lo=%d mi=%d hi=%d cmp=%d\n", lo, mi, hi, cmp);
if (!cmp) {
*ent = index + 24 * mi;
return 1;

Loading…
Cancel
Save