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:
Warren Dukes 2004-11-15 17:31:01 +00:00
parent 33b9585d68
commit 209cab26ca
2 changed files with 1 additions and 4 deletions

2
TODO
View File

@ -1,6 +1,6 @@
0.12
----
*) cleanup list code and sorting
*) rewrite linked list code!
*) parsing of lame tags (including getting replaygain info)

View File

@ -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;
}