whitespace cleanup

git-svn-id: https://svn.musicpd.org/mpd/trunk@7320 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
Max Kellermann 2008-04-12 04:19:32 +00:00 committed by Eric Wong
parent c89b358c8a
commit 8098d8ff8e

View File

@ -33,20 +33,20 @@ typedef struct tagTrackerItem {
char *getTagItemString(int type, char *string) char *getTagItemString(int type, char *string)
{ {
TreeIterator iter; TreeIterator iter;
if (tagTrees[type] == NULL) if (tagTrees[type] == NULL)
{ {
tagTrees[type] = MakeTree((TreeCompareKeyFunction)strcmp, tagTrees[type] = MakeTree((TreeCompareKeyFunction)strcmp,
(TreeFreeFunction)free, (TreeFreeFunction)free,
(TreeFreeFunction)free); (TreeFreeFunction)free);
} }
if (FindInTree(tagTrees[type], string, &iter)) if (FindInTree(tagTrees[type], string, &iter))
{ {
((TagTrackerItem *)GetTreeKeyData(&iter)->data)->count++; ((TagTrackerItem *)GetTreeKeyData(&iter)->data)->count++;
return (char *)GetTreeKeyData(&iter)->key; return (char *)GetTreeKeyData(&iter)->key;
} }
else else
{ {
TagTrackerItem *item = xmalloc(sizeof(TagTrackerItem)); TagTrackerItem *item = xmalloc(sizeof(TagTrackerItem));
char *key = xstrdup(string); char *key = xstrdup(string);
@ -60,23 +60,23 @@ char *getTagItemString(int type, char *string)
void removeTagItemString(int type, char *string) void removeTagItemString(int type, char *string)
{ {
TreeIterator iter; TreeIterator iter;
assert(string); assert(string);
assert(tagTrees[type]); assert(tagTrees[type]);
if (tagTrees[type] == NULL) if (tagTrees[type] == NULL)
return; return;
if (FindInTree(tagTrees[type], string, &iter)) if (FindInTree(tagTrees[type], string, &iter))
{ {
TagTrackerItem * item = TagTrackerItem * item =
(TagTrackerItem *)GetTreeKeyData(&iter)->data; (TagTrackerItem *)GetTreeKeyData(&iter)->data;
item->count--; item->count--;
if (item->count <= 0) if (item->count <= 0)
RemoveFromTreeByIterator(tagTrees[type], &iter); RemoveFromTreeByIterator(tagTrees[type], &iter);
} }
if (GetTreeSize(tagTrees[type]) == 0) if (GetTreeSize(tagTrees[type]) == 0)
{ {
FreeTree(tagTrees[type]); FreeTree(tagTrees[type]);
tagTrees[type] = NULL; tagTrees[type] = NULL;
@ -133,10 +133,10 @@ void printVisitedInTagTracker(int fd, int type)
{ {
item = ((TagTrackerItem *)GetTreeKeyData(&iter)->data); item = ((TagTrackerItem *)GetTreeKeyData(&iter)->data);
if (item->visited) if (item->visited)
{ {
fdprintf(fd, fdprintf(fd,
"%s: %s\n", "%s: %s\n",
mpdTagItemKeys[type], mpdTagItemKeys[type],
(char *)GetTreeKeyData(&iter)->key); (char *)GetTreeKeyData(&iter)->key);
} }