Commit 9b87946b authored by Rémi Duraffort's avatar Rémi Duraffort

Fix compilation warnings (here the lib might have ask for const char* instead...

Fix compilation warnings (here the lib might have ask for const char* instead of char as they don't modify the string at all)
parent 9edf6943
...@@ -257,7 +257,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -257,7 +257,7 @@ static int Open( vlc_object_t *p_this )
/* Set menu language ("en") /* Set menu language ("en")
* XXX: maybe it would be better to set it like audio/spu * XXX: maybe it would be better to set it like audio/spu
* or to create a --menu-language option */ * or to create a --menu-language option */
if( dvdnav_menu_language_select( p_sys->dvdnav, LANGUAGE_DEFAULT ) != if( dvdnav_menu_language_select( p_sys->dvdnav, (char*)LANGUAGE_DEFAULT ) !=
DVDNAV_STATUS_OK ) DVDNAV_STATUS_OK )
{ {
msg_Warn( p_demux, "can't set menu language to '%s' (%s)", msg_Warn( p_demux, "can't set menu language to '%s' (%s)",
...@@ -273,7 +273,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -273,7 +273,7 @@ static int Open( vlc_object_t *p_this )
psz_code, dvdnav_err_to_string( p_sys->dvdnav ) ); psz_code, dvdnav_err_to_string( p_sys->dvdnav ) );
/* We try to fall back to 'en' */ /* We try to fall back to 'en' */
if( strcmp( psz_code, LANGUAGE_DEFAULT ) ) if( strcmp( psz_code, LANGUAGE_DEFAULT ) )
dvdnav_audio_language_select( p_sys->dvdnav, LANGUAGE_DEFAULT ); dvdnav_audio_language_select( p_sys->dvdnav, (char*)LANGUAGE_DEFAULT );
} }
free( psz_code ); free( psz_code );
...@@ -286,7 +286,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -286,7 +286,7 @@ static int Open( vlc_object_t *p_this )
psz_code, dvdnav_err_to_string( p_sys->dvdnav ) ); psz_code, dvdnav_err_to_string( p_sys->dvdnav ) );
/* We try to fall back to 'en' */ /* We try to fall back to 'en' */
if( strcmp( psz_code, LANGUAGE_DEFAULT ) ) if( strcmp( psz_code, LANGUAGE_DEFAULT ) )
dvdnav_spu_language_select(p_sys->dvdnav, LANGUAGE_DEFAULT ); dvdnav_spu_language_select(p_sys->dvdnav, (char*)LANGUAGE_DEFAULT );
} }
free( psz_code ); free( psz_code );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment