]> git.sesse.net Git - vlc/commitdiff
Missing const
authorRémi Denis-Courmont <remi@remlab.net>
Thu, 24 Jun 2010 00:19:32 +0000 (03:19 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Thu, 24 Jun 2010 00:19:32 +0000 (03:19 +0300)
src/control/video.c

index 09070e3c02f33da983041da6d1acd7ca7039d514..29ae7318f3997f36ac64b8eaafb61752fc264c56 100644 (file)
@@ -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;