oops, forgot to remove some DEBUG statments
git-svn-id: https://svn.musicpd.org/mpd/trunk@2673 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
parent
33b9585d68
commit
209cab26ca
2
TODO
2
TODO
|
@ -1,6 +1,6 @@
|
|||
0.12
|
||||
----
|
||||
*) cleanup list code and sorting
|
||||
*) rewrite linked list code!
|
||||
|
||||
*) parsing of lame tags (including getting replaygain info)
|
||||
|
||||
|
|
|
@ -32,11 +32,9 @@ char * getTagItemString(int type, char * string) {
|
|||
}
|
||||
|
||||
if(findNodeInList(tagLists[type], string, &node)) {
|
||||
DEBUG("found\n");
|
||||
((TagTrackerItem *)node->data)->count++;
|
||||
}
|
||||
else {
|
||||
DEBUG("not found\n");
|
||||
TagTrackerItem * item = malloc(sizeof(TagTrackerItem));
|
||||
item->count = 1;
|
||||
item->visited = 0;
|
||||
|
@ -44,7 +42,6 @@ char * getTagItemString(int type, char * string) {
|
|||
item);
|
||||
}
|
||||
|
||||
DEBUG("key: %s:%s\n", string, node->key);
|
||||
return node->key;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue