summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2009-10-25 10:42:21 +0000
committerNils Wallménius <nils@rockbox.org>2009-10-25 10:42:21 +0000
commit0b302f0cb9e9cf5d308e5d89a16c661ff6bc604f (patch)
treef58f587a735e78587690e8f06b3d44078003019c /firmware
parent18cf68e391808608855a024057f24d7506adec26 (diff)
downloadrockbox-0b302f0cb9e9cf5d308e5d89a16c661ff6bc604f.tar.gz
rockbox-0b302f0cb9e9cf5d308e5d89a16c661ff6bc604f.zip
Little bit of const correctness
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23343 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/common/unicode.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/firmware/common/unicode.c b/firmware/common/unicode.c
index 61989e5ab0..4ef6eaae2b 100644
--- a/firmware/common/unicode.c
+++ b/firmware/common/unicode.c
@@ -45,7 +45,7 @@ static int loaded_cp_table = 0;
#define MAX_CP_TABLE_SIZE 32768
#define NUM_TABLES 5
-static const char *filename[NUM_TABLES] =
+static const char * const filename[NUM_TABLES] =
{
CODEPAGE_DIR"/iso.cp",
CODEPAGE_DIR"/932.cp", /* SJIS */
@@ -59,7 +59,7 @@ static const char cp_2_table[NUM_CODEPAGES] =
0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 4, 5, 0
};
-static const char *name_codepages[NUM_CODEPAGES+1] =
+static const char * const name_codepages[NUM_CODEPAGES+1] =
{
"ISO-8859-1",
"ISO-8859-7",
@@ -83,7 +83,7 @@ static const char *name_codepages[NUM_CODEPAGES+1] =
#define MAX_CP_TABLE_SIZE 640
#define NUM_TABLES 1
-static const char *filename[NUM_TABLES] = {
+static const char * const filename[NUM_TABLES] = {
CODEPAGE_DIR"/isomini.cp"
};
@@ -92,7 +92,7 @@ static const char cp_2_table[NUM_CODEPAGES] =
0, 1, 1, 1, 1, 1, 0
};
-static const char *name_codepages[NUM_CODEPAGES+1] =
+static const char * const name_codepages[NUM_CODEPAGES+1] =
{
"ISO-8859-1",
"ISO-8859-7",
@@ -116,7 +116,7 @@ static const unsigned char utf8comp[6] =
/* Load codepage file into memory */
static int load_cp_table(int cp)
{
- int i=0;
+ int i = 0;
int table = cp_2_table[cp];
int file, tablesize;
unsigned char tmp[2];