summaryrefslogtreecommitdiff
path: root/apps/plugins/wavview.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/wavview.c')
-rw-r--r--apps/plugins/wavview.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/wavview.c b/apps/plugins/wavview.c
index 25afa40901..82e75e0427 100644
--- a/apps/plugins/wavview.c
+++ b/apps/plugins/wavview.c
@@ -70,7 +70,7 @@ static uint32_t center = 0;
70static uint32_t ppp = 1; 70static uint32_t ppp = 1;
71 71
72/* helper function copied from libwavpack bits.c */ 72/* helper function copied from libwavpack bits.c */
73void little_endian_to_native (void *data, char *format) 73static void little_endian_to_native (void *data, char *format)
74{ 74{
75 unsigned char *cp = (unsigned char *) data; 75 unsigned char *cp = (unsigned char *) data;
76 76
@@ -262,7 +262,7 @@ static int readwavpeaks(const char *filename)
262 return 0; 262 return 0;
263} 263}
264 264
265int displaypeaks(void) 265static int displaypeaks(void)
266{ 266{
267 register int x = 0; 267 register int x = 0;
268 register int lymin = INT_MAX; 268 register int lymin = INT_MAX;
@@ -334,7 +334,7 @@ int displaypeaks(void)
334 return 0; 334 return 0;
335} 335}
336 336
337void show_help(void) 337static void show_help(void)
338{ 338{
339 rb->lcd_clear_display(); 339 rb->lcd_clear_display();
340 rb->lcd_puts(0, 0, "WAVVIEW USAGE:"); 340 rb->lcd_puts(0, 0, "WAVVIEW USAGE:");