summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Hohmuth <sideral@rockbox.org>2011-06-06 22:48:53 +0000
committerMichael Hohmuth <sideral@rockbox.org>2011-06-06 22:48:53 +0000
commit509d6a901d45038b8f3c6c11bb9253f5497654f8 (patch)
tree2eb8cf4dfc9d34e954ccdc2c7ac190a2b840a1c7
parentc3cf8bcd4e3e8806d72208268945044f8f197277 (diff)
downloadrockbox-509d6a901d45038b8f3c6c11bb9253f5497654f8.tar.gz
rockbox-509d6a901d45038b8f3c6c11bb9253f5497654f8.zip
FS#12132 patch 2: add_uniqbuf: Fix confusing indentation in if condition
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29978 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/tagcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tagcache.c b/apps/tagcache.c
index 9f8ce315f3..ff6b853f17 100644
--- a/apps/tagcache.c
+++ b/apps/tagcache.c
@@ -1090,7 +1090,7 @@ static bool add_uniqbuf(struct tagcache_search *tcs, unsigned long id)
/* If uniq buffer is not defined we must return true for search to work. */
if (tcs->unique_list == NULL || (!TAGCACHE_IS_UNIQUE(tcs->type)
- && !TAGCACHE_IS_NUMERIC(tcs->type)))
+ && !TAGCACHE_IS_NUMERIC(tcs->type)))
{
return true;
}