summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/cuesheet.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/cuesheet.c b/apps/cuesheet.c
index a309b95873..58be9fcbf4 100644
--- a/apps/cuesheet.c
+++ b/apps/cuesheet.c
@@ -76,7 +76,7 @@ bool look_for_cuesheet_file(const char *trackpath)
76 } 76 }
77} 77}
78 78
79char *skip_whitespace(char* buf) 79static char *skip_whitespace(char* buf)
80{ 80{
81 char *r = buf; 81 char *r = buf;
82 while (*r && (*r < 33)) 82 while (*r && (*r < 33))
@@ -171,7 +171,7 @@ bool parse_cuesheet(char *file, struct cuesheet *cue)
171 171
172/* takes care of seeking to a track in a playlist 172/* takes care of seeking to a track in a playlist
173 * returns false if audio isn't playing */ 173 * returns false if audio isn't playing */
174bool seek(unsigned long pos) 174static bool seek(unsigned long pos)
175{ 175{
176 if (!(audio_status() & AUDIO_STATUS_PLAY)) 176 if (!(audio_status() & AUDIO_STATUS_PLAY))
177 { 177 {
@@ -204,7 +204,7 @@ int cue_find_current_track(struct cuesheet *cue, unsigned long curpos)
204} 204}
205 205
206/* callback that gives list item titles for the cuesheet browser */ 206/* callback that gives list item titles for the cuesheet browser */
207char *list_get_name_cb(int selected_item, 207static char *list_get_name_cb(int selected_item,
208 void *data, 208 void *data,
209 char *buffer) 209 char *buffer)
210{ 210{
@@ -224,7 +224,7 @@ char *list_get_name_cb(int selected_item,
224 return buffer; 224 return buffer;
225} 225}
226 226
227void browse_cuesheet(struct cuesheet *cue) 227static void browse_cuesheet(struct cuesheet *cue)
228{ 228{
229 struct gui_synclist lists; 229 struct gui_synclist lists;
230 int action; 230 int action;