diff options
Diffstat (limited to 'src/screen_search.c')
-rw-r--r-- | src/screen_search.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/screen_search.c b/src/screen_search.c index 982fe34e0..dd2353c00 100644 --- a/src/screen_search.c +++ b/src/screen_search.c @@ -247,8 +247,6 @@ search_advanced_query(char *query, mpdclient_t *c) i=0; j=0; while (strv[i] && strlen(strv[i]) > 0 && i < 9) { - D("strv[%d] = \"%s\"\n", i, strv[i]); - int id = search_get_tag_id(strv[i]); if (id == -1) { if (table[j]) { @@ -281,6 +279,9 @@ search_advanced_query(char *query, mpdclient_t *c) if (advanced_search_mode && j > 0) { + int iter; + mpd_InfoEntity *entity; + /*----------------------------------------------------------------------- * NOTE (again): This code exists to test a new search ui, * Its ugly and MUST be redesigned before the next release! @@ -290,7 +291,6 @@ search_advanced_query(char *query, mpdclient_t *c) /** stupid - but this is just a test...... (fulhack) */ mpd_startSearch(c->connection, FALSE); - int iter; for(iter = 0; iter < 10; iter++) { mpd_addConstraintSearch(c->connection, table[iter], arg[iter]); } @@ -299,8 +299,6 @@ search_advanced_query(char *query, mpdclient_t *c) fl = g_malloc0(sizeof(mpdclient_filelist_t)); - mpd_InfoEntity *entity; - while ((entity=mpd_getNextInfoEntity(c->connection))) { filelist_entry_t *entry = g_malloc0(sizeof(filelist_entry_t)); |