diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-02-20 01:04:07 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-02-20 01:04:07 +0000 |
commit | 7b7f11b8e9dcfa069ccd447c4054dd8d832f628c (patch) | |
tree | 7a4a5eca3818270ed6c3a7fa21f998db0487341e /src/libsputext | |
parent | 2f2f62ae7c066e01b8d14b4ffc52ac86a9871d33 (diff) | |
download | xine-lib-7b7f11b8e9dcfa069ccd447c4054dd8d832f628c.tar.gz xine-lib-7b7f11b8e9dcfa069ccd447c4054dd8d832f628c.tar.bz2 |
const++
CVS patchset: 8616
CVS date: 2007/02/20 01:04:07
Diffstat (limited to 'src/libsputext')
-rw-r--r-- | src/libsputext/xine_decoder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsputext/xine_decoder.c b/src/libsputext/xine_decoder.c index f8e50ffd4..e8ef631ca 100644 --- a/src/libsputext/xine_decoder.c +++ b/src/libsputext/xine_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_decoder.c,v 1.98 2007/02/20 00:34:57 dgp85 Exp $ + * $Id: xine_decoder.c,v 1.99 2007/02/20 01:04:07 dgp85 Exp $ * */ @@ -925,7 +925,7 @@ static void update_src_encoding(void *class_gen, xine_cfg_entry_t *entry) static void *init_spu_decoder_plugin (xine_t *xine, void *data) { - static char *subtitle_size_strings[] = { + static const char *subtitle_size_strings[] = { "tiny", "small", "normal", "large", "very large", "huge", NULL }; sputext_class_t *this ; |