diff options
| author | Boris Gjenero <dreamlayers@rockbox.org> | 2011-12-17 18:31:55 +0000 |
|---|---|---|
| committer | Boris Gjenero <dreamlayers@rockbox.org> | 2011-12-17 18:31:55 +0000 |
| commit | 17ed3253fc98bcca59d70531a4d81b3be75dc7ea (patch) | |
| tree | 9d1eee2029f442b207dcbb8ea1f75059e96b7d96 /apps | |
| parent | f372212adf279d12c88d6bde948d11cf3ad002b3 (diff) | |
| download | rockbox-17ed3253fc98bcca59d70531a4d81b3be75dc7ea.zip rockbox-17ed3253fc98bcca59d70531a4d81b3be75dc7ea.tar.gz rockbox-17ed3253fc98bcca59d70531a4d81b3be75dc7ea.tar.bz2 rockbox-17ed3253fc98bcca59d70531a4d81b3be75dc7ea.tar.xz | |
Add const to global pointers to strings.
When a global pointer is not declared as constant, gcc will put it in
memory. Getting the address of the string it points to requires loading
the address of the pointer and then loading the pointer. When the pointer
is declared constant, the address of the string is loaded directly.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31345 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/metadata/wave.c | 5 | ||||
| -rw-r--r-- | apps/recorder/keyboard.c | 2 | ||||
| -rw-r--r-- | apps/tagcache.c | 8 |
3 files changed, 8 insertions, 7 deletions
diff --git a/apps/metadata/wave.c b/apps/metadata/wave.c index 93c4d83..45acea1 100644 --- a/apps/metadata/wave.c +++ b/apps/metadata/wave.c @@ -62,7 +62,8 @@ enum { #define WAVE_CHUNKNAME_LENGTH 4 #define WAVE_CHUNKSIZE_LENGTH 4 -static const unsigned char *wave_chunklist = "RIFF" +static const unsigned char * const wave_chunklist + = "RIFF" "WAVE" "fmt " "fact" @@ -73,7 +74,7 @@ static const unsigned char *wave_chunklist = "RIFF" #define WAVE64_CHUNKNAME_LENGTH 16 #define WAVE64_CHUNKSIZE_LENGTH 8 -static const unsigned char *wave64_chunklist +static const unsigned char * const wave64_chunklist = "riff\x2e\x91\xcf\x11\xa5\xd6\x28\xdb\x04\xc1\x00\x00" "wave\xf3\xac\xd3\x11\x8c\xd1\x00\xc0\x4f\x8e\xdb\x8a" "fmt \xf3\xac\xd3\x11\x8c\xd1\x00\xc0\x4f\x8e\xdb\x8a" diff --git a/apps/recorder/keyboard.c b/apps/recorder/keyboard.c index d6fd847..a6c015a 100644 --- a/apps/recorder/keyboard.c +++ b/apps/recorder/keyboard.c @@ -130,7 +130,7 @@ static bool kbd_loaded = false; #ifdef HAVE_MORSE_INPUT /* FIXME: We should put this to a configuration file. */ -static const char *morse_alphabets = +static const char * const morse_alphabets = "abcdefghijklmnopqrstuvwxyz1234567890,.?-@ "; static const unsigned char morse_codes[] = { 0x05,0x18,0x1a,0x0c,0x02,0x12,0x0e,0x10,0x04,0x17,0x0d,0x14,0x07, diff --git a/apps/tagcache.c b/apps/tagcache.c index 99ef3f5..ef642b1 100644 --- a/apps/tagcache.c +++ b/apps/tagcache.c @@ -192,14 +192,14 @@ struct master_header { }; /* For the endianess correction */ -static const char *tagfile_entry_ec = "ll"; +static const char * const tagfile_entry_ec = "ll"; /** Note: This should be (1 + TAG_COUNT) amount of l's. */ -static const char *index_entry_ec = "llllllllllllllllllllll"; +static const char * const index_entry_ec = "llllllllllllllllllllll"; -static const char *tagcache_header_ec = "lll"; -static const char *master_header_ec = "llllll"; +static const char * const tagcache_header_ec = "lll"; +static const char * const master_header_ec = "llllll"; static struct master_header current_tcmh; |