summaryrefslogtreecommitdiff
path: root/apps/tree.c
diff options
context:
space:
mode:
authorSteve Bavin <pondlife@pondlife.me>2007-03-01 17:00:13 +0000
committerSteve Bavin <pondlife@pondlife.me>2007-03-01 17:00:13 +0000
commit7230674b5dc955120780535c83260b1c6e67aeaa (patch)
tree749df4781d33bc386fbad74ac138e6fd21cbc59c /apps/tree.c
parente600af7db906a78cdf6a6056f40b8712f9847349 (diff)
downloadrockbox-7230674b5dc955120780535c83260b1c6e67aeaa.tar.gz
rockbox-7230674b5dc955120780535c83260b1c6e67aeaa.zip
Oops, fix player warnings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12536 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tree.c')
-rw-r--r--apps/tree.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/tree.c b/apps/tree.c
index 0aba9b123f..d21ae13016 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -377,7 +377,7 @@ static int update_dir(void)
377 || global_settings.show_path_in_browser == SHOW_PATH_CURRENT) 377 || global_settings.show_path_in_browser == SHOW_PATH_CURRENT)
378 { 378 {
379 gui_synclist_set_title(&tree_lists, tagtree_get_title(&tc), 379 gui_synclist_set_title(&tree_lists, tagtree_get_title(&tc),
380 global_settings.show_icons?filetype_get_icon(ATTR_DIRECTORY):NULL); 380 global_settings.show_icons?filetype_get_icon(ATTR_DIRECTORY):(ICON)NULL);
381 } 381 }
382 else 382 else
383 { 383 {
@@ -391,7 +391,7 @@ static int update_dir(void)
391 if (global_settings.show_path_in_browser == SHOW_PATH_FULL) 391 if (global_settings.show_path_in_browser == SHOW_PATH_FULL)
392 { 392 {
393 gui_synclist_set_title(&tree_lists, tc.currdir, 393 gui_synclist_set_title(&tree_lists, tc.currdir,
394 global_settings.show_icons?filetype_get_icon(ATTR_DIRECTORY):NULL); 394 global_settings.show_icons?filetype_get_icon(ATTR_DIRECTORY):(ICON)NULL);
395 } 395 }
396 else if (global_settings.show_path_in_browser == SHOW_PATH_CURRENT) 396 else if (global_settings.show_path_in_browser == SHOW_PATH_CURRENT)
397 { 397 {
@@ -403,7 +403,7 @@ static int update_dir(void)
403 } 403 }
404 else 404 else
405 gui_synclist_set_title(&tree_lists, title, 405 gui_synclist_set_title(&tree_lists, title,
406 global_settings.show_icons?filetype_get_icon(ATTR_DIRECTORY):NULL); 406 global_settings.show_icons?filetype_get_icon(ATTR_DIRECTORY):(ICON)NULL);
407 } 407 }
408 else 408 else
409 { 409 {