From 0b302f0cb9e9cf5d308e5d89a16c661ff6bc604f Mon Sep 17 00:00:00 2001 From: Nils Wallménius Date: Sun, 25 Oct 2009 10:42:21 +0000 Subject: Little bit of const correctness git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23343 a1c6a512-1295-4272-9138-f99709370657 --- firmware/common/unicode.c | 10 +++++----- 1 file 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]; -- cgit v1.2.3