diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-23 15:46:51 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-23 15:46:51 +0100 |
commit | 494227b2c50100c9699f484f15e42fe0af20c6d2 (patch) | |
tree | d45b9d9a24fa9374d75c24393ef68c4fe78784f9 /src | |
parent | 3697dd13e57c0cbb045310e19c8339fe80d49549 (diff) | |
download | xine-lib-494227b2c50100c9699f484f15e42fe0af20c6d2.tar.gz xine-lib-494227b2c50100c9699f484f15e42fe0af20c6d2.tar.bz2 |
Mark a few more array totally constant.
Diffstat (limited to 'src')
-rw-r--r-- | src/input/input_dvd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c index 60f58d361..e0dd3bba1 100644 --- a/src/input/input_dvd.c +++ b/src/input/input_dvd.c @@ -1740,9 +1740,9 @@ static void *init_class (xine_t *xine, void *data) { dvd_input_class_t *this; config_values_t *config = xine->config; void *dvdcss; - static const char *skip_modes[] = {"skip program", "skip part", "skip title", NULL}; - static const char *seek_modes[] = {"seek in program chain", "seek in program", NULL}; - static const char *play_single_chapter_modes[] = {"entire dvd", "one chapter", NULL}; + static const char *const skip_modes[] = {"skip program", "skip part", "skip title", NULL}; + static const char *const seek_modes[] = {"seek in program chain", "seek in program", NULL}; + static const char *const play_single_chapter_modes[] = {"entire dvd", "one chapter", NULL}; trace_print("Called\n"); #ifdef INPUT_DEBUG |