summaryrefslogtreecommitdiff
path: root/apps/playlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/playlist.c')
-rw-r--r--apps/playlist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/playlist.c b/apps/playlist.c
index 8483d70293..1e5c12a181 100644
--- a/apps/playlist.c
+++ b/apps/playlist.c
@@ -37,14 +37,14 @@
37 37
38#include "lang.h" 38#include "lang.h"
39 39
40struct playlist_info playlist; 40static struct playlist_info playlist;
41 41
42#define PLAYLIST_BUFFER_SIZE (AVERAGE_FILENAME_LENGTH*MAX_FILES_IN_DIR) 42#define PLAYLIST_BUFFER_SIZE (AVERAGE_FILENAME_LENGTH*MAX_FILES_IN_DIR)
43 43
44unsigned char playlist_buffer[PLAYLIST_BUFFER_SIZE]; 44static unsigned char playlist_buffer[PLAYLIST_BUFFER_SIZE];
45static int playlist_end_pos = 0; 45static int playlist_end_pos = 0;
46 46
47char now_playing[MAX_PATH+1]; 47static char now_playing[MAX_PATH+1];
48 48
49void playlist_clear(void) 49void playlist_clear(void)
50{ 50{