[vlc-commits] Fix printf formats
Rémi Duraffort
git at videolan.org
Sat Jul 13 09:46:06 CEST 2013
vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Sat Jul 13 09:42:24 2013 +0200| [a461c5daffd6048fd08f1d09934329bce5292d92] | committer: Rémi Duraffort
Fix printf formats
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a461c5daffd6048fd08f1d09934329bce5292d92
---
modules/demux/mkv/virtual_segment.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/demux/mkv/virtual_segment.cpp b/modules/demux/mkv/virtual_segment.cpp
index c0d26e5..75d8035 100644
--- a/modules/demux/mkv/virtual_segment.cpp
+++ b/modules/demux/mkv/virtual_segment.cpp
@@ -645,7 +645,7 @@ void virtual_segment_c::ChangeSegment( matroska_segment_c * p_old, matroska_segm
!memcmp( &p_nfmt->video, &p_ofmt->video, sizeof(video_format_t) ) ) ) )
{
/* FIXME handle video palettes... */
- msg_Warn( &p_old->sys.demuxer, "Reusing decoder of old track %u for track %u", j, i);
+ msg_Warn( &p_old->sys.demuxer, "Reusing decoder of old track %zu for track %zu", j, i);
p_tk->p_es = p_old->tracks[j]->p_es;
p_old->tracks[j]->p_es = NULL;
break;
More information about the vlc-commits
mailing list