Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-26 19:49:48 +0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-26 19:49:48 +0400
commit641e1cac73acd67d0b1830dfd7196bca58dffbf2 (patch)
tree9c718a8f9eebf1f1932e9f3051a17a8828f0ecd9 /unpack-objects.c
parentc4fb06c0d04f433ab71d84674ebfe18cda162369 (diff)
git-unpack-objects: start removing debug output
At least the least interesting one.
Diffstat (limited to 'unpack-objects.c')
-rw-r--r--unpack-objects.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/unpack-objects.c b/unpack-objects.c
index a62eeb432d..9da3ac89a8 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;