[vlc-commits] Fix printf formats

Rémi Duraffort git at videolan.org
Sat Jul 13 15:31:25 CEST 2013


vlc/vlc-2.1 | branch: master | Rémi Duraffort <ivoire at videolan.org> | Sat Jul 13 09:42:24 2013 +0200| [207a68bb40c5241d62c34c7bce87a8daee3a3486] | committer: Jean-Baptiste Kempf

Fix printf formats

(cherry picked from commit a461c5daffd6048fd08f1d09934329bce5292d92)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.1.git/?a=commit;h=207a68bb40c5241d62c34c7bce87a8daee3a3486
---

 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