summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
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. */