summaryrefslogtreecommitdiff
path: root/apps/tagtree.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tagtree.c')
-rw-r--r--apps/tagtree.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/tagtree.c b/apps/tagtree.c
index 7f95f559fa..d75b9eb667 100644
--- a/apps/tagtree.c
+++ b/apps/tagtree.c
@@ -690,7 +690,7 @@ bool tagtree_import(void)
690 690
691static bool parse_menu(const char *filename); 691static bool parse_menu(const char *filename);
692 692
693int parse_line(int n, const char *buf, void *parameters) 693static int parse_line(int n, const char *buf, void *parameters)
694{ 694{
695 char data[256]; 695 char data[256];
696 int variable; 696 int variable;
@@ -865,7 +865,7 @@ void tagtree_init(void)
865 audio_set_track_unbuffer_event(tagtree_unbuffer_event); 865 audio_set_track_unbuffer_event(tagtree_unbuffer_event);
866} 866}
867 867
868bool show_search_progress(bool init, int count) 868static bool show_search_progress(bool init, int count)
869{ 869{
870 static int last_tick = 0; 870 static int last_tick = 0;
871 871
@@ -893,8 +893,8 @@ bool show_search_progress(bool init, int count)
893 return true; 893 return true;
894} 894}
895 895
896int format_str(struct tagcache_search *tcs, struct display_format *fmt, 896static int format_str(struct tagcache_search *tcs, struct display_format *fmt,
897 char *buf, int buf_size) 897 char *buf, int buf_size)
898{ 898{
899 char fmtbuf[8]; 899 char fmtbuf[8];
900 bool read_format = false; 900 bool read_format = false;
@@ -973,8 +973,8 @@ int format_str(struct tagcache_search *tcs, struct display_format *fmt,
973 return 0; 973 return 0;
974} 974}
975 975
976int retrieve_entries(struct tree_context *c, struct tagcache_search *tcs, 976static int retrieve_entries(struct tree_context *c, struct tagcache_search *tcs,
977 int offset, bool init) 977 int offset, bool init)
978{ 978{
979 struct tagentry *dptr = (struct tagentry *)c->dircache; 979 struct tagentry *dptr = (struct tagentry *)c->dircache;
980 struct display_format *fmt; 980 struct display_format *fmt;
@@ -1453,7 +1453,7 @@ int tagtree_get_filename(struct tree_context* c, char *buf, int buflen)
1453 return 0; 1453 return 0;
1454} 1454}
1455 1455
1456bool insert_all_playlist(struct tree_context *c, int position, bool queue) 1456static bool insert_all_playlist(struct tree_context *c, int position, bool queue)
1457{ 1457{
1458 int i; 1458 int i;
1459 char buf[MAX_PATH]; 1459 char buf[MAX_PATH];