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
This commit is contained in:
Miika Pekkarinen 2006-10-10 10:29:42 +00:00
parent 3cb17b262f
commit 3b7111e6ea
2 changed files with 3 additions and 3 deletions

View file

@ -98,7 +98,7 @@ struct tagcache_search_clause
bool numeric;
bool input;
long numeric_data;
char str[32];
char str[128];
};
struct tagcache_search {

View file

@ -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. */