summaryrefslogtreecommitdiff
path: root/apps/recorder
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder')
-rw-r--r--apps/recorder/peakmeter.c6
-rw-r--r--apps/recorder/recording.c2
-rw-r--r--apps/recorder/wormlet.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/apps/recorder/peakmeter.c b/apps/recorder/peakmeter.c
index 2e787ba982..a49a46a04b 100644
--- a/apps/recorder/peakmeter.c
+++ b/apps/recorder/peakmeter.c
@@ -49,9 +49,9 @@ static long peak_meter_clip_timeout_r;
49static int peak_meter_clip_hold; 49static int peak_meter_clip_hold;
50 50
51/* specifies the value range in peak volume values */ 51/* specifies the value range in peak volume values */
52unsigned short peak_meter_range_min; 52static unsigned short peak_meter_range_min;
53unsigned short peak_meter_range_max; 53static unsigned short peak_meter_range_max;
54unsigned short peak_meter_range; 54static unsigned short peak_meter_range;
55 55
56/* if set to true clip timeout is disabled */ 56/* if set to true clip timeout is disabled */
57static bool peak_meter_clip_eternal = false; 57static bool peak_meter_clip_eternal = false;
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index 3926382daa..22c8da2a33 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -104,7 +104,7 @@ char *fmt_gain(int snd, int val, char *str, int len)
104 return str; 104 return str;
105} 105}
106 106
107int cursor; 107static int cursor;
108 108
109void adjust_cursor(void) 109void adjust_cursor(void)
110{ 110{
diff --git a/apps/recorder/wormlet.c b/apps/recorder/wormlet.c
index f1654227ff..d6850dc039 100644
--- a/apps/recorder/wormlet.c
+++ b/apps/recorder/wormlet.c
@@ -64,7 +64,7 @@
64/** 64/**
65 * All the properties that a worm has. 65 * All the properties that a worm has.
66 */ 66 */
67struct worm { 67static struct worm {
68 /* The worm is stored in a ring of xy coordinates */ 68 /* The worm is stored in a ring of xy coordinates */
69 char x[MAX_WORM_SEGMENTS]; 69 char x[MAX_WORM_SEGMENTS];
70 char y[MAX_WORM_SEGMENTS]; 70 char y[MAX_WORM_SEGMENTS];