diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-02-20 00:58:51 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-02-20 00:58:51 +0000 |
commit | 86b77e33f11dc24b53f22170d957f5cb1eadf843 (patch) | |
tree | d17209c5f15afd8a7f3f7a7938b43f97792e0293 /src | |
parent | 0e447cf72eb6d7c44dad3647ea21c7567742cf1e (diff) | |
download | xine-lib-86b77e33f11dc24b53f22170d957f5cb1eadf843.tar.gz xine-lib-86b77e33f11dc24b53f22170d957f5cb1eadf843.tar.bz2 |
Remove the cast as register_enum now accept consts.
CVS patchset: 8614
CVS date: 2007/02/20 00:58:51
Diffstat (limited to 'src')
-rw-r--r-- | src/post/goom/xine_goom.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/post/goom/xine_goom.c b/src/post/goom/xine_goom.c index e4f55068b..5871618e0 100644 --- a/src/post/goom/xine_goom.c +++ b/src/post/goom/xine_goom.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_goom.c,v 1.64 2006/12/02 22:35:18 miguelfreitas Exp $ + * $Id: xine_goom.c,v 1.65 2007/02/20 00:58:51 dgp85 Exp $ * * GOOM post plugin. * @@ -218,7 +218,7 @@ static void *goom_init_plugin(xine_t *xine, void *data) cfg->register_enum (cfg, "effects.goom.csc_method", 0, - (char **)goom_csc_methods, + goom_csc_methods, _("colorspace conversion method"), _("You can choose the colorspace conversion method used by goom.\n" "The available selections should be self-explaining."), |