[vlc-commits] MP4: fix format strings on Win32
Jean-Baptiste Kempf
git at videolan.org
Sun Nov 13 11:35:10 CET 2016
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sun Nov 13 11:30:50 2016 +0100| [9719d3beecb40617f3af0f5917cba1d727e67e63] | committer: Jean-Baptiste Kempf
MP4: fix format strings on Win32
ref #17625
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9719d3beecb40617f3af0f5917cba1d727e67e63
---
modules/demux/mp4/libmp4.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/demux/mp4/libmp4.c b/modules/demux/mp4/libmp4.c
index e121dfe..1aff7bb 100644
--- a/modules/demux/mp4/libmp4.c
+++ b/modules/demux/mp4/libmp4.c
@@ -223,7 +223,7 @@ static MP4_Box_t *MP4_ReadBoxRestricted( stream_t *p_stream, MP4_Box_t *p_father
if( peekbox.i_size < 8 )
{
- msg_Warn( p_stream, "found an invalid sized %"PRIu64" box %4.4s @%ld",
+ msg_Warn( p_stream, "found an invalid sized %"PRIu64" box %4.4s @%"PRIu64 ,
peekbox.i_size, (char *) &peekbox.i_type, vlc_stream_Tell(p_stream) );
return NULL;
}
More information about the vlc-commits
mailing list