[vlc-commits] codec: vt: fix format string

Francois Cartegnie git at videolan.org
Thu Sep 22 11:57:35 CEST 2016


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Thu Sep 22 11:39:30 2016 +0200| [e1017a2085f7ab1905329d31d0fb42031989f6f5] | committer: Francois Cartegnie

codec: vt: fix format string

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

 modules/codec/videotoolbox.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/codec/videotoolbox.m b/modules/codec/videotoolbox.m
index 98e1e08..0df8fbb 100644
--- a/modules/codec/videotoolbox.m
+++ b/modules/codec/videotoolbox.m
@@ -146,7 +146,7 @@ static CMVideoCodecType CodecPrecheck(decoder_t *p_dec)
                 return kCMVideoCodecType_H264;
             }
 
-            msg_Dbg(p_dec, "trying to decode MPEG-4 Part 10: profile %" PRIx8 ", level %i" PRIx8, i_profile, i_level);
+            msg_Dbg(p_dec, "trying to decode MPEG-4 Part 10: profile %" PRIx8 ", level %" PRIx8, i_profile, i_level);
 
             switch (i_profile) {
                 case PROFILE_H264_BASELINE:



More information about the vlc-commits mailing list