summaryrefslogtreecommitdiff
path: root/src/mwindow.c
diff options
context:
space:
mode:
authorCarlos Martín Nieto <carlos@cmartin.tk>2012-05-23 12:59:21 +0200
committerCarlos Martín Nieto <carlos@cmartin.tk>2012-05-23 12:59:21 +0200
commit8bf10dbab23c84aaccc4847afe0fc4b6968dbe9d (patch)
tree15bacb120ef7542f01c774f81205e3225b7692de /src/mwindow.c
parent7a361e93f39789e9523caeb3ef8754173165aab7 (diff)
downloadlibgit2-8bf10dbab23c84aaccc4847afe0fc4b6968dbe9d.tar.gz
Remove left-over debugging output
Diffstat (limited to 'src/mwindow.c')
-rw-r--r--src/mwindow.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mwindow.c b/src/mwindow.c
index b59c4d2f7..57adabd48 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;
}