From: Linus Torvalds Date: Sun, 26 Jun 2005 15:49:48 +0000 (-0700) Subject: git-unpack-objects: start removing debug output X-Git-Tag: v0.99~170 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=641e1cac73acd67d0b1830dfd7196bca58dffbf2;p=git.git git-unpack-objects: start removing debug output At least the least interesting one. --- diff --git a/unpack-objects.c b/unpack-objects.c index a62eeb432..9da3ac89a 100644 --- a/unpack-objects.c +++ b/unpack-objects.c @@ -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;