summaryrefslogtreecommitdiff
path: root/apps/recorder/keyboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder/keyboard.c')
-rw-r--r--apps/recorder/keyboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/keyboard.c b/apps/recorder/keyboard.c
index 0331a5711d..8acccdafd1 100644
--- a/apps/recorder/keyboard.c
+++ b/apps/recorder/keyboard.c
@@ -33,7 +33,7 @@
33#define KEYBOARD_LINES 4 33#define KEYBOARD_LINES 4
34#define KEYBOARD_PAGES 3 34#define KEYBOARD_PAGES 3
35 35
36static void kbd_setupkeys(char* line[KEYBOARD_LINES], int page) 36static void kbd_setupkeys(const char* line[KEYBOARD_LINES], int page)
37{ 37{
38 switch (page) { 38 switch (page) {
39 case 0: 39 case 0:
@@ -85,7 +85,7 @@ int kbd_input(char* text, int buflen)
85 int len; 85 int len;
86 int editpos; 86 int editpos;
87 bool redraw = true; 87 bool redraw = true;
88 char* line[KEYBOARD_LINES]; 88 const char* line[KEYBOARD_LINES];
89 89
90 char outline[256]; 90 char outline[256];
91 char c = 0; 91 char c = 0;