From 3b7111e6ea39fa29e07700e7f8a89172006522e5 Mon Sep 17 00:00:00 2001 From: Miika Pekkarinen Date: Tue, 10 Oct 2006 10:29:42 +0000 Subject: 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 --- apps/tagcache.h | 2 +- apps/tagtree.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'apps') 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 bool numeric; bool input; long numeric_data; - char str[32]; + char str[128]; }; struct 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 @@ static int tagtree_play_folder(struct tree_context* c); -static char searchstring[32]; +static char searchstring[128]; enum variables { var_sorttype = 100, @@ -162,7 +162,7 @@ static int get_token_str(char *buf, int size) static int get_tag(int *tag) { - char buf[32]; + char buf[128]; int i; /* Find the start. */ -- cgit v1.2.3