[vlc-devel] [vlc-commits] codec: telx: remove newline from debug format string
Steve Lhomme
robux4 at ycbcr.xyz
Wed Jul 24 06:40:21 CEST 2019
On 2019-07-23 15:23, Francois Cartegnie wrote:
> vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Tue Jul 23 10:16:06 2019 +0200| [a0d2e79041bfc3bbafea136ed2f7db9073acbe42] | committer: Francois Cartegnie
>
> codec: telx: remove newline from debug format string
>
>> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a0d2e79041bfc3bbafea136ed2f7db9073acbe42
> ---
>
> modules/codec/telx.c | 22 +++++++++++-----------
> 1 file changed, 11 insertions(+), 11 deletions(-)
>
> diff --git a/modules/codec/telx.c b/modules/codec/telx.c
> index b0fe5f84fa..53a354bd77 100644
> --- a/modules/codec/telx.c
> +++ b/modules/codec/telx.c
>
> @@ -528,7 +528,7 @@ static int Decode( decoder_t *p_dec, block_t *p_block )
>
> p_sys->b_erase[magazine] = (1 & (flag >> 7));
>
> - dbg((p_dec, "%ld --> %ld\n", (long int) p_block->i_pts, (long int)(p_sys->prev_pts+1500000)));
> + dbg((p_dec, "%ld --> %ld", (long int) p_block->i_pts, (long int)(p_sys->prev_pts+1500000)));
Please use the macros for vlc_tick_t
More information about the vlc-devel
mailing list