Skip to content

Commit

Permalink
git-unpack-objects: start removing debug output
Browse files Browse the repository at this point in the history
At least the least interesting one.
  • Loading branch information
Linus Torvalds committed Jun 26, 2005
1 parent c4fb06c commit 641e1ca
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion unpack-objects.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 641e1ca

Please sign in to comment.