Commit 1339e357 authored by Rémi Duraffort's avatar Rémi Duraffort

Do not add a newline at the end of the strings send to msg_*

parent 794fc3ca
...@@ -422,7 +422,7 @@ static int Open (vlc_object_t *obj) ...@@ -422,7 +422,7 @@ static int Open (vlc_object_t *obj)
goto error; goto error;
} }
if (p_aout->output.output.i_rate != old_rate) if (p_aout->output.output.i_rate != old_rate)
msg_Warn (p_aout, "resampling from %d Hz to %d Hz\n", old_rate, msg_Warn (p_aout, "resampling from %d Hz to %d Hz", old_rate,
p_aout->output.output.i_rate); p_aout->output.output.i_rate);
/* Set period size. */ /* Set period size. */
......
...@@ -649,7 +649,7 @@ static int D3dCreateDeviceManager(vlc_va_dxva2_t *va) ...@@ -649,7 +649,7 @@ static int D3dCreateDeviceManager(vlc_va_dxva2_t *va)
TEXT("DXVA2CreateDirect3DDeviceManager9")); TEXT("DXVA2CreateDirect3DDeviceManager9"));
if (!CreateDeviceManager9) { if (!CreateDeviceManager9) {
msg_Err(va->log, "cannot load function\n"); msg_Err(va->log, "cannot load function");
return VLC_EGENERIC; return VLC_EGENERIC;
} }
msg_Dbg(va->log, "OurDirect3DCreateDeviceManager9 Success!"); msg_Dbg(va->log, "OurDirect3DCreateDeviceManager9 Success!");
...@@ -693,7 +693,7 @@ static int DxCreateVideoService(vlc_va_dxva2_t *va) ...@@ -693,7 +693,7 @@ static int DxCreateVideoService(vlc_va_dxva2_t *va)
TEXT("DXVA2CreateVideoService")); TEXT("DXVA2CreateVideoService"));
if (!CreateVideoService) { if (!CreateVideoService) {
msg_Err(va->log, "cannot load function\n"); msg_Err(va->log, "cannot load function");
return 4; return 4;
} }
msg_Info(va->log, "DXVA2CreateVideoService Success!"); msg_Info(va->log, "DXVA2CreateVideoService Success!");
...@@ -850,7 +850,7 @@ static int DxCreateVideoDecoder(vlc_va_dxva2_t *va, ...@@ -850,7 +850,7 @@ static int DxCreateVideoDecoder(vlc_va_dxva2_t *va,
DXVA2_VideoDecoderRenderTarget, DXVA2_VideoDecoderRenderTarget,
surface_list, surface_list,
NULL))) { NULL))) {
msg_Err(va->log, "IDirectXVideoAccelerationService_CreateSurface failed\n"); msg_Err(va->log, "IDirectXVideoAccelerationService_CreateSurface failed");
va->surface_count = 0; va->surface_count = 0;
return VLC_EGENERIC; return VLC_EGENERIC;
} }
...@@ -899,7 +899,7 @@ static int DxCreateVideoDecoder(vlc_va_dxva2_t *va, ...@@ -899,7 +899,7 @@ static int DxCreateVideoDecoder(vlc_va_dxva2_t *va,
NULL, NULL,
&cfg_count, &cfg_count,
&cfg_list))) { &cfg_list))) {
msg_Err(va->log, "IDirectXVideoDecoderService_GetDecoderConfigurations failed\n"); msg_Err(va->log, "IDirectXVideoDecoderService_GetDecoderConfigurations failed");
return VLC_EGENERIC; return VLC_EGENERIC;
} }
msg_Dbg(va->log, "we got %d decoder configurations", cfg_count); msg_Dbg(va->log, "we got %d decoder configurations", cfg_count);
...@@ -944,7 +944,7 @@ static int DxCreateVideoDecoder(vlc_va_dxva2_t *va, ...@@ -944,7 +944,7 @@ static int DxCreateVideoDecoder(vlc_va_dxva2_t *va,
surface_list, surface_list,
va->surface_count, va->surface_count,
&decoder))) { &decoder))) {
msg_Err(va->log, "IDirectXVideoDecoderService_CreateVideoDecoder failed\n"); msg_Err(va->log, "IDirectXVideoDecoderService_CreateVideoDecoder failed");
return VLC_EGENERIC; return VLC_EGENERIC;
} }
va->decoder = decoder; va->decoder = decoder;
......
...@@ -186,7 +186,7 @@ X11Display::X11Display( intf_thread_t *pIntf ): SkinObject( pIntf ), ...@@ -186,7 +186,7 @@ X11Display::X11Display( intf_thread_t *pIntf ): SkinObject( pIntf ),
break; break;
default: default:
msg_Err( getIntf(), "unsupported depth: %d bpp\n", depth ); msg_Err( getIntf(), "unsupported depth: %d bpp", depth );
m_pDisplay = NULL; m_pDisplay = NULL;
break; break;
} }
......
...@@ -234,7 +234,7 @@ static void Blend( filter_t *p_filter, ...@@ -234,7 +234,7 @@ static void Blend( filter_t *p_filter,
video_format_FixRgb( &p_filter->fmt_in.video ); video_format_FixRgb( &p_filter->fmt_in.video );
#if 0 #if 0
msg_Dbg( p_filter, "chroma: %4.4s -> %4.4s\n", msg_Dbg( p_filter, "chroma: %4.4s -> %4.4s",
(char *)&p_filter->fmt_in.video.i_chroma, (char *)&p_filter->fmt_in.video.i_chroma,
(char *)&p_filter->fmt_out.video.i_chroma ); (char *)&p_filter->fmt_out.video.i_chroma );
#endif #endif
......
...@@ -333,7 +333,7 @@ static bool GetUpdateFile( update_t *p_update ) ...@@ -333,7 +333,7 @@ static bool GetUpdateFile( update_t *p_update )
else else
{ {
free( p_hash ); free( p_hash );
msg_Err( p_update->p_libvlc, "Key signature invalid !\n" ); msg_Err( p_update->p_libvlc, "Key signature invalid !" );
goto error; goto error;
} }
} }
......
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