Commit 8bf10dbab23c84aaccc4847afe0fc4b6968dbe9d

Carlos Martín Nieto 2012-05-23T12:59:21

Remove left-over debugging output

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/src/mwindow.c b/src/mwindow.c
index b59c4d2..57adabd 100644
--- a/src/mwindow.c
+++ b/src/mwindow.c
@@ -89,7 +89,6 @@ void git_mwindow_scan_lru(
 {
 	git_mwindow *w, *w_l;
 
-	puts("LRU");
 	for (w_l = NULL, w = mwf->windows; w; w = w->next) {
 		if (!w->inuse_cnt) {
 			/*
@@ -247,7 +246,6 @@ unsigned char *git_mwindow_open(
 	if (left)
 		*left = (unsigned int)(w->window_map.len - offset);
 
-	fflush(stdout);
 	return (unsigned char *) w->window_map.data + offset;
 }