diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-26 08:49:48 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-26 08:49:48 -0700 |
commit | 641e1cac73acd67d0b1830dfd7196bca58dffbf2 (patch) | |
tree | 9c718a8f9eebf1f1932e9f3051a17a8828f0ecd9 /unpack-objects.c | |
parent | c4fb06c0d04f433ab71d84674ebfe18cda162369 (diff) | |
download | git-641e1cac73acd67d0b1830dfd7196bca58dffbf2.tar.gz |
git-unpack-objects: start removing debug output
At least the least interesting one.
Diffstat (limited to 'unpack-objects.c')
-rw-r--r-- | unpack-objects.c | 1 |
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; |