Commit 209cab26 authored by Warren Dukes's avatar Warren Dukes

oops, forgot to remove some DEBUG statments

git-svn-id: https://svn.musicpd.org/mpd/trunk@2673 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent 33b9585d
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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment