diff options
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/tagcache.h | 2 | ||||
| -rw-r--r-- | apps/tagtree.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/tagcache.h b/apps/tagcache.h index 1a3afca..f2694ce 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 90fa617..8ea515f 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. */ |