diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-13 19:36:29 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-13 19:36:29 +0100 |
commit | db7b2f331d5bc140dfa062fae11b52bdd3583659 (patch) | |
tree | ca8f56acaef782bddf7cc64b7c8af60bf9ccbb59 | |
parent | 9d3f1c5801afe38291fbf25fbb36dd83505311ff (diff) | |
download | xine-lib-db7b2f331d5bc140dfa062fae11b52bdd3583659.tar.gz xine-lib-db7b2f331d5bc140dfa062fae11b52bdd3583659.tar.bz2 |
Mark enum_pulldown and enum_framerate also const.
-rw-r--r-- | src/post/deinterlace/xine_plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/post/deinterlace/xine_plugin.c b/src/post/deinterlace/xine_plugin.c index 6b6f99be6..68eabba67 100644 --- a/src/post/deinterlace/xine_plugin.c +++ b/src/post/deinterlace/xine_plugin.c @@ -56,8 +56,8 @@ typedef struct post_plugin_deinterlace_s post_plugin_deinterlace_t; #define MAX_NUM_METHODS 30 static const char *enum_methods[MAX_NUM_METHODS]; -static char *enum_pulldown[] = { "none", "vektor", NULL }; -static char *enum_framerate[] = { "full", "half_top", "half_bottom", NULL }; +static const char *enum_pulldown[] = { "none", "vektor", NULL }; +static const char *enum_framerate[] = { "full", "half_top", "half_bottom", NULL }; static void *help_string; |