[vlc-commits] [Git][videolan/vlc][master] 2 commits: test: packetizer: remove duplicate size in log
Jean-Baptiste Kempf (@jbk)
gitlab at videolan.org
Thu Dec 8 08:40:33 UTC 2022
Jean-Baptiste Kempf pushed to branch master at VideoLAN / VLC
Commits:
b727d9dc by Alexandre Janniaux at 2022-12-08T08:26:23+00:00
test: packetizer: remove duplicate size in log
- - - - -
18f0e0ca by Alexandre Janniaux at 2022-12-08T08:26:23+00:00
test: packetizer: fix format specifier for size_t
size_t use %zu, which is different than PRId64.
- - - - -
1 changed file:
- test/modules/packetizer/packetizer.h
Changes:
=====================================
test/modules/packetizer/packetizer.h
=====================================
@@ -121,9 +121,9 @@ static int test_packetize(const char *run,
out = p->pf_packetize(p, in ? &in : NULL);
if(out)
{
- fprintf(stderr, "block #%u dts %"PRId64" sz %"PRId64
- " flags %x sz %"PRId64"\n",
- i_count, out->i_dts, out->i_buffer,
+ fprintf(stderr, "block #%u dts %"PRId64
+ " flags %x sz %zu""\n",
+ i_count, out->i_dts,
out->i_flags, out->i_buffer );
block_ChainLastAppend(&outappend, out);
++i_count;
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/585956cb0587bac250306e5a865212b4d450f77b...18f0e0cabb04da88061aa194d233b0e0c1cbb6a7
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/585956cb0587bac250306e5a865212b4d450f77b...18f0e0cabb04da88061aa194d233b0e0c1cbb6a7
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list