Commit 8bf10dba by Carlos Martín Nieto

Remove left-over debugging output

parent 7a361e93
...@@ -89,7 +89,6 @@ void git_mwindow_scan_lru( ...@@ -89,7 +89,6 @@ void git_mwindow_scan_lru(
{ {
git_mwindow *w, *w_l; git_mwindow *w, *w_l;
puts("LRU");
for (w_l = NULL, w = mwf->windows; w; w = w->next) { for (w_l = NULL, w = mwf->windows; w; w = w->next) {
if (!w->inuse_cnt) { if (!w->inuse_cnt) {
/* /*
...@@ -247,7 +246,6 @@ unsigned char *git_mwindow_open( ...@@ -247,7 +246,6 @@ unsigned char *git_mwindow_open(
if (left) if (left)
*left = (unsigned int)(w->window_map.len - offset); *left = (unsigned int)(w->window_map.len - offset);
fflush(stdout);
return (unsigned char *) w->window_map.data + offset; return (unsigned char *) w->window_map.data + offset;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment