diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-19 11:43:14 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-19 11:43:14 +0100 |
commit | 91c06ff0cf45fc30ff3fb6f76d1c9b6c63e59d31 (patch) | |
tree | 4cfa5418780d63724fdbbdbfb7b7291feb821317 | |
parent | b6aea3d60f27a423058f6cf0da674fba4ce505ad (diff) | |
download | xine-lib-91c06ff0cf45fc30ff3fb6f76d1c9b6c63e59d31.tar.gz xine-lib-91c06ff0cf45fc30ff3fb6f76d1c9b6c63e59d31.tar.bz2 |
Mark static strings as const.
-rw-r--r-- | src/xine-engine/configfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xine-engine/configfile.c b/src/xine-engine/configfile.c index 2f5e6214a..69f9ed6f9 100644 --- a/src/xine-engine/configfile.c +++ b/src/xine-engine/configfile.c @@ -207,7 +207,7 @@ static const xine_config_entry_translation_t config_entry_translation[] = { static int config_section_enum(const char *sect) { - static char *known_section[] = { + static const char *const known_section[] = { "gui", "ui", "audio", |