From 62f23806d2642eea640a811ee9088ee310d4af41 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Thu, 24 Jun 2010 03:19:32 +0300 Subject: [PATCH] Missing const --- src/control/video.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/control/video.c b/src/control/video.c index 09070e3c02..29ae7318f3 100644 --- a/src/control/video.c +++ b/src/control/video.c @@ -768,7 +768,7 @@ marq_option_bynumber(unsigned option) }; enum { num_opts = sizeof(optlist) / sizeof(*optlist) }; - opt_t *r = option < num_opts ? optlist+option : NULL; + const opt_t *r = option < num_opts ? optlist+option : NULL; if( !r ) libvlc_printerr( "Unknown marquee option" ); return r; @@ -816,7 +816,7 @@ void libvlc_video_set_marquee_string( libvlc_media_player_t *p_mi, /* logo module support */ -static opt_t * +static const opt_t * logo_option_bynumber( unsigned option ) { static const opt_t vlogo_optlist[] = @@ -833,7 +833,7 @@ logo_option_bynumber( unsigned option ) }; enum { num_vlogo_opts = sizeof(vlogo_optlist) / sizeof(*vlogo_optlist) }; - opt_t *r = option < num_vlogo_opts ? vlogo_optlist+option : NULL; + const opt_t *r = option < num_vlogo_opts ? vlogo_optlist+option : NULL; if( !r ) libvlc_printerr( "Unknown logo option" ); return r; @@ -864,7 +864,7 @@ int libvlc_video_get_logo_int( libvlc_media_player_t *p_mi, /* adjust module support */ -static opt_t * +static const opt_t * adjust_option_bynumber( unsigned option ) { static const opt_t optlist[] = @@ -878,7 +878,7 @@ adjust_option_bynumber( unsigned option ) }; enum { num_opts = sizeof(optlist) / sizeof(*optlist) }; - opt_t *r = option < num_opts ? optlist+option : NULL; + const opt_t *r = option < num_opts ? optlist+option : NULL; if( !r ) libvlc_printerr( "Unknown adjust option" ); return r; -- 2.39.2