summaryrefslogtreecommitdiff
path: root/apps/tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tree.c')
-rw-r--r--apps/tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/tree.c b/apps/tree.c
index 70f2704fae..1939c7ee05 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -683,7 +683,7 @@ static int dirbrowse(void)
683 } 683 }
684 } 684 }
685#ifdef HAVE_TAGCACHE 685#ifdef HAVE_TAGCACHE
686 switch (id3db?tagtree_enter(&tc):ft_enter(&tc)) 686 switch (id3db ? tagtree_enter(&tc, true) : ft_enter(&tc))
687#else 687#else
688 switch (ft_enter(&tc)) 688 switch (ft_enter(&tc))
689#endif 689#endif
@@ -723,7 +723,7 @@ static int dirbrowse(void)
723 723
724#ifdef HAVE_TAGCACHE 724#ifdef HAVE_TAGCACHE
725 if (id3db) 725 if (id3db)
726 tagtree_exit(&tc); 726 tagtree_exit(&tc, true);
727 else 727 else
728#endif 728#endif
729 if (ft_exit(&tc) == 3) 729 if (ft_exit(&tc) == 3)