summaryrefslogtreecommitdiff
path: root/apps
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
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')
-rw-r--r--apps/tagcache.h2
-rw-r--r--apps/tagtree.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/tagcache.h b/apps/tagcache.h
index 1a3afcac16..f2694cea1b 100644
--- a/apps/tagcache.h
+++ b/apps/tagcache.h
@@ -98,7 +98,7 @@ struct tagcache_search_clause
98 bool numeric; 98 bool numeric;
99 bool input; 99 bool input;
100 long numeric_data; 100 long numeric_data;
101 char str[32]; 101 char str[128];
102}; 102};
103 103
104struct tagcache_search { 104struct tagcache_search {
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. */