Commit 8c7ec7a4 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont Committed by Rémi Denis-Courmont

Format string (make gcc happy)

parent c6833294
...@@ -275,7 +275,7 @@ decoder_t *input_DecoderNew( input_thread_t *p_input, ...@@ -275,7 +275,7 @@ decoder_t *input_DecoderNew( input_thread_t *p_input,
if( p_dec == NULL ) if( p_dec == NULL )
{ {
msg_Err( p_input, "could not create packetizer" ); msg_Err( p_input, "could not create packetizer" );
dialog_Fatal( p_input, _("Streaming / Transcoding failed"), dialog_Fatal( p_input, _("Streaming / Transcoding failed"), "%s",
_("VLC could not open the packetizer module.") ); _("VLC could not open the packetizer module.") );
return NULL; return NULL;
} }
...@@ -288,7 +288,7 @@ decoder_t *input_DecoderNew( input_thread_t *p_input, ...@@ -288,7 +288,7 @@ decoder_t *input_DecoderNew( input_thread_t *p_input,
if( p_dec == NULL ) if( p_dec == NULL )
{ {
msg_Err( p_input, "could not create decoder" ); msg_Err( p_input, "could not create decoder" );
dialog_Fatal( p_input, _("Streaming / Transcoding failed"), dialog_Fatal( p_input, _("Streaming / Transcoding failed"), "%s",
_("VLC could not open the decoder module.") ); _("VLC could not open the decoder module.") );
return NULL; return NULL;
} }
...@@ -441,7 +441,7 @@ int input_DecoderSetCcState( decoder_t *p_dec, bool b_decode, int i_channel ) ...@@ -441,7 +441,7 @@ int input_DecoderSetCcState( decoder_t *p_dec, bool b_decode, int i_channel )
if( !p_cc ) if( !p_cc )
{ {
msg_Err( p_dec, "could not create decoder" ); msg_Err( p_dec, "could not create decoder" );
dialog_Fatal( p_dec, _("Streaming / Transcoding failed"), dialog_Fatal( p_dec, _("Streaming / Transcoding failed"), "%s",
_("VLC could not open the decoder module.") ); _("VLC could not open the decoder module.") );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
......
...@@ -1158,7 +1158,9 @@ int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc, char const *psz_module ) ...@@ -1158,7 +1158,9 @@ int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc, char const *psz_module )
psz_module = "dummy"; psz_module = "dummy";
else else
#endif #endif
msg_Info( p_libvlc, _("Running vlc with the default interface. Use 'cvlc' to use vlc without interface.") ); msg_Info( p_libvlc, "%s",
_("Running vlc with the default interface. "
"Use 'cvlc' to use vlc without interface.") );
} }
free( psz_interface ); free( psz_interface );
} }
...@@ -1974,7 +1976,7 @@ static void Version( void ) ...@@ -1974,7 +1976,7 @@ static void Version( void )
utf8_fprintf( stdout, _("Compiled by %s@%s.%s\n"), utf8_fprintf( stdout, _("Compiled by %s@%s.%s\n"),
VLC_CompileBy(), VLC_CompileHost(), VLC_CompileDomain() ); VLC_CompileBy(), VLC_CompileHost(), VLC_CompileDomain() );
utf8_fprintf( stdout, _("Compiler: %s\n"), VLC_Compiler() ); utf8_fprintf( stdout, _("Compiler: %s\n"), VLC_Compiler() );
utf8_fprintf( stdout, LICENSE_MSG ); utf8_fprintf( stdout, "%s", LICENSE_MSG );
#ifdef WIN32 /* Pause the console because it's destroyed when we exit */ #ifdef WIN32 /* Pause the console because it's destroyed when we exit */
PauseConsole(); PauseConsole();
......
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