Commit 17a0f61e authored by Tristan Matthews's avatar Tristan Matthews

livehttp: fix format string

parent 5a98d360
......@@ -779,7 +779,7 @@ static void Close( vlc_object_t * p_this )
}
ssize_t writevalue = writeSegment( p_access );
msg_Dbg( p_access, "Writing.. %"PRId64,writevalue);
msg_Dbg( p_access, "Writing.. %zd", writevalue );
if( unlikely( writevalue < 0 ) )
{
block_ChainRelease( p_sys->block_buffer );
......
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