git-unpack-objects: start removing debug output
authorLinus Torvalds <torvalds@ppc970.osdl.org>
Sun, 26 Jun 2005 15:49:48 +0000 (08:49 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Sun, 26 Jun 2005 15:49:48 +0000 (08:49 -0700)
At least the least interesting one.

unpack-objects.c

index a62eeb4..9da3ac8 100644 (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;