summaryrefslogtreecommitdiff
path: root/apps/onplay.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/onplay.c')
-rw-r--r--apps/onplay.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/onplay.c b/apps/onplay.c
index fa3d3954f8..af6fa9cc57 100644
--- a/apps/onplay.c
+++ b/apps/onplay.c
@@ -85,7 +85,7 @@ struct playlist_args {
85/* Displays the bookmark menu options for the user to decide. This is an */ 85/* Displays the bookmark menu options for the user to decide. This is an */
86/* interface function. */ 86/* interface function. */
87/* ----------------------------------------------------------------------- */ 87/* ----------------------------------------------------------------------- */
88bool bookmark_menu(void) 88static bool bookmark_menu(void)
89{ 89{
90 int i,m; 90 int i,m;
91 bool result; 91 bool result;
@@ -240,13 +240,13 @@ static bool view_playlist(void)
240 return result; 240 return result;
241} 241}
242 242
243bool cat_add_to_a_playlist(void) 243static bool cat_add_to_a_playlist(void)
244{ 244{
245 return catalog_add_to_a_playlist(selected_file, selected_file_attr, 245 return catalog_add_to_a_playlist(selected_file, selected_file_attr,
246 false); 246 false);
247} 247}
248 248
249bool cat_add_to_a_new_playlist(void) 249static bool cat_add_to_a_new_playlist(void)
250{ 250{
251 return catalog_add_to_a_playlist(selected_file, selected_file_attr, true); 251 return catalog_add_to_a_playlist(selected_file, selected_file_attr, true);
252} 252}
@@ -541,7 +541,7 @@ static bool rename_file(void)
541 return false; 541 return false;
542} 542}
543 543
544bool create_dir(void) 544static bool create_dir(void)
545{ 545{
546 char dirname[MAX_PATH]; 546 char dirname[MAX_PATH];
547 char *cwd; 547 char *cwd;