1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-04 09:11:33 +02:00

quicktime decoder: fix a cast warning

This commit is contained in:
Derk-Jan Hartman 2008-07-19 22:25:05 +02:00
parent 08a33c8da7
commit 1d31c0090c

View File

@ -911,7 +911,7 @@ static picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )
if( p_sys->i_late > 10 )
{
msg_Dbg( p_dec, "late buffer dropped (%i)", i_pts );
msg_Dbg( p_dec, "late buffer dropped (%"PRId64")", i_pts );
block_Release( p_block );
return NULL;
}