summaryrefslogtreecommitdiff
path: root/playlist.c
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-11-06 22:30:14 +0100
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-11-06 22:30:14 +0100
commit4f0f5548b605af9a5ef39c7744406b4be5dfd170 (patch)
tree153cf7e7fb25b636554e1441eb61ab8f53713955 /playlist.c
parent964941d46d18a081a1704f71a646a744f4e38d91 (diff)
removed some printfs
Diffstat (limited to 'playlist.c')
-rw-r--r--playlist.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/playlist.c b/playlist.c
index 6f3e0147..4416d2fa 100644
--- a/playlist.c
+++ b/playlist.c
@@ -1041,9 +1041,7 @@ pl_nextsong (int reason) {
streamer_set_nextsong (r, 1);
return 0;
}
- printf ("getting next after %p %s\n", curr, curr->fname);
it = curr->next[PL_MAIN];
- printf ("which is %p\n", it);
}
if (!it) {
if (pl_loop_mode == 0) {
@@ -1058,7 +1056,6 @@ pl_nextsong (int reason) {
return -1;
}
int r = pl_get_idx_of (it);
- printf ("which is int(%d)\n", r);
streamer_set_nextsong (r, 1);
return 0;
}