summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-12-23 15:41:24 +0100
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-12-23 15:41:24 +0100
commit3badd9b739a0cc8dc6e70194863692557a494224 (patch)
tree32c50db2a17a1c7e6321c45e1e303648203c1ee7
parentc5f704991d3c66e54c03de09d99d4b0436641ba3 (diff)
downloadxine-lib-3badd9b739a0cc8dc6e70194863692557a494224.tar.gz
xine-lib-3badd9b739a0cc8dc6e70194863692557a494224.tar.bz2
Fix constant pointers declaration.
-rw-r--r--src/dxr3/video_out_dxr3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dxr3/video_out_dxr3.c b/src/dxr3/video_out_dxr3.c
index a2153dacc..81deea482 100644
--- a/src/dxr3/video_out_dxr3.c
+++ b/src/dxr3/video_out_dxr3.c
@@ -209,12 +209,12 @@ static vo_driver_t *dxr3_vo_open_plugin(video_driver_class_t *class_gen, const v
plugin_node_t *node;
#ifdef HAVE_X11
- static const char const *videoout_modes[] = { "letterboxed tv", "widescreen tv",
+ static const char *const videoout_modes[] = { "letterboxed tv", "widescreen tv",
"letterboxed overlay", "widescreen overlay", NULL };
#else
- static const char const *videoout_modes[] = { "letterboxed tv", "widescreen tv", NULL };
+ static const char *const videoout_modes[] = { "letterboxed tv", "widescreen tv", NULL };
#endif
- static const char const *tv_modes[] = { "ntsc", "pal", "pal60" , "default", NULL };
+ static const char *const tv_modes[] = { "ntsc", "pal", "pal60" , "default", NULL };
int list_id, list_size;
xine_sarray_t *plugin_list;