From 2f20b3e78426600e0e8008eab6663fc4f0547f57 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Wed, 18 Aug 2004 19:59:06 +0000 Subject: Const policed pointer arguments to functions, part 4 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5001 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugin.h | 2 +- apps/recorder/keyboard.c | 4 ++-- apps/recorder/peakmeter.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'apps') diff --git a/apps/plugin.h b/apps/plugin.h index e8fb25e555..43f8b897c3 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -261,7 +261,7 @@ struct plugin_api { #endif void (*plugin_tsr)(void (*exit_callback)(void)); #if defined(DEBUG) || defined(SIMULATOR) - void (*debugf)(char *fmt, ...); + void (*debugf)(const char *fmt, ...); #endif struct user_settings* global_settings; void (*backlight_set_timeout)(int index); 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 @@ #define KEYBOARD_LINES 4 #define KEYBOARD_PAGES 3 -static void kbd_setupkeys(char* line[KEYBOARD_LINES], int page) +static void kbd_setupkeys(const char* line[KEYBOARD_LINES], int page) { switch (page) { case 0: @@ -85,7 +85,7 @@ int kbd_input(char* text, int buflen) int len; int editpos; bool redraw = true; - char* line[KEYBOARD_LINES]; + const char* line[KEYBOARD_LINES]; char outline[256]; char c = 0; diff --git a/apps/recorder/peakmeter.c b/apps/recorder/peakmeter.c index b069c1566b..22f90a3f94 100644 --- a/apps/recorder/peakmeter.c +++ b/apps/recorder/peakmeter.c @@ -122,7 +122,7 @@ static const long clip_time_out[] = { dBfs values. Used to draw the scale */ #define DB_SCALE_SRC_VALUES_SIZE 11 #if 0 -const static int db_scale_src_values[DB_SCALE_SRC_VALUES_SIZE] = { +static const int db_scale_src_values[DB_SCALE_SRC_VALUES_SIZE] = { 32767, /* 0 db */ 23197, /* - 3 db */ 16422, /* - 6 db */ -- cgit v1.2.3