git-unpack-objects: start removing debug output

At least the least interesting one.
This commit is contained in:
Linus Torvalds 2005-06-26 08:49:48 -07:00
parent c4fb06c0d0
commit 641e1cac73

View file

@ -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;