summaryrefslogtreecommitdiff
path: root/apps/tagtree.c
diff options
context:
space:
mode:
authorMiika Pekkarinen <miipekk@ihme.org>2006-10-10 10:29:42 +0000
committerMiika Pekkarinen <miipekk@ihme.org>2006-10-10 10:29:42 +0000
commit3b7111e6ea39fa29e07700e7f8a89172006522e5 (patch)
tree4a73f337d70f8f34950385e31840c4cb7ffc2ede /apps/tagtree.c
parent3cb17b262fb6f8f6a90da4fc8ff5512727e5e20e (diff)
downloadrockbox-3b7111e6ea39fa29e07700e7f8a89172006522e5.tar.gz
rockbox-3b7111e6ea39fa29e07700e7f8a89172006522e5.zip
FS#6155: "oneof" oeprator limited to a list of 3 or less values.
Increased clause string length to 128. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11166 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tagtree.c')
-rw-r--r--apps/tagtree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/tagtree.c b/apps/tagtree.c
index 90fa617aad..8ea515f390 100644
--- a/apps/tagtree.c
+++ b/apps/tagtree.c
@@ -47,7 +47,7 @@
47 47
48static int tagtree_play_folder(struct tree_context* c); 48static int tagtree_play_folder(struct tree_context* c);
49 49
50static char searchstring[32]; 50static char searchstring[128];
51 51
52enum variables { 52enum variables {
53 var_sorttype = 100, 53 var_sorttype = 100,
@@ -162,7 +162,7 @@ static int get_token_str(char *buf, int size)
162 162
163static int get_tag(int *tag) 163static int get_tag(int *tag)
164{ 164{
165 char buf[32]; 165 char buf[128];
166 int i; 166 int i;
167 167
168 /* Find the start. */ 168 /* Find the start. */