Skip to content
Snippets Groups Projects
Commit 18f0e0ca authored by Alexandre Janniaux's avatar Alexandre Janniaux Committed by Jean-Baptiste Kempf
Browse files

test: packetizer: fix format specifier for size_t

size_t use %zu, which is different than PRId64.
parent b727d9dc
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,7 @@ static int test_packetize(const char *run,
if(out)
{
fprintf(stderr, "block #%u dts %"PRId64
" flags %x sz %"PRId64"\n",
" flags %x sz %zu""\n",
i_count, out->i_dts,
out->i_flags, out->i_buffer );
block_ChainLastAppend(&outappend, out);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment