summaryrefslogtreecommitdiff
path: root/apps/tagtree.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tagtree.c')
-rw-r--r--apps/tagtree.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/tagtree.c b/apps/tagtree.c
index ba27c84f6a..c188a900fa 100644
--- a/apps/tagtree.c
+++ b/apps/tagtree.c
@@ -967,7 +967,7 @@ static void tagtree_track_finish_event(unsigned short id, void *ev_data)
967#endif 967#endif
968} 968}
969 969
970bool tagtree_export(void) 970int tagtree_export(void)
971{ 971{
972 struct tagcache_search tcs; 972 struct tagcache_search tcs;
973 973
@@ -977,10 +977,10 @@ bool tagtree_export(void)
977 splash(HZ*2, ID2P(LANG_FAILED)); 977 splash(HZ*2, ID2P(LANG_FAILED));
978 } 978 }
979 979
980 return false; 980 return 0;
981} 981}
982 982
983bool tagtree_import(void) 983int tagtree_import(void)
984{ 984{
985 splash(0, ID2P(LANG_WAIT)); 985 splash(0, ID2P(LANG_WAIT));
986 if (!tagcache_import_changelog()) 986 if (!tagcache_import_changelog())
@@ -988,7 +988,7 @@ bool tagtree_import(void)
988 splash(HZ*2, ID2P(LANG_FAILED)); 988 splash(HZ*2, ID2P(LANG_FAILED));
989 } 989 }
990 990
991 return false; 991 return 0;
992} 992}
993 993
994static bool parse_menu(const char *filename); 994static bool parse_menu(const char *filename);