diff options
author | Max Kellermann <max@duempel.org> | 2008-10-02 15:44:21 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-02 15:44:21 +0200 |
commit | 36470979d9f3518217fc26987558dafb3ab36f5c (patch) | |
tree | 5ebeb5b306faafca9c52f1696f4be9851b4fa9b1 /src/utils.c | |
parent | 9526f180e6f55654c99bd8d66c71612a32b0fb4e (diff) | |
download | mpd-36470979d9f3518217fc26987558dafb3ab36f5c.tar.gz mpd-36470979d9f3518217fc26987558dafb3ab36f5c.tar.xz mpd-36470979d9f3518217fc26987558dafb3ab36f5c.zip |
removed the debugging function D()
gdb is for debugging. We don't need D() calls littered all over.
Diffstat (limited to '')
-rw-r--r-- | src/utils.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/utils.c b/src/utils.c index 574b8fa49..5f5940b03 100644 --- a/src/utils.c +++ b/src/utils.c @@ -19,7 +19,6 @@ */ #include "utils.h" -#include "ncmpc.h" #include "options.h" #include "support.h" @@ -81,8 +80,6 @@ gcmp_list_from_path(mpdclient_t *c, const gchar *path, GList *list, gint types) if ((filelist = mpdclient_filelist_get(c, path)) == NULL) return list; - D("retrieved filelist!\n"); - for (i = 0; i < filelist_length(filelist); ++i) { struct filelist_entry *entry = filelist_get(filelist, i); mpd_InfoEntity *entity = entry ? entry->entity : NULL; |