From 05a637973d4fa5304d9d5c15fee3ca3e70da8b74 Mon Sep 17 00:00:00 2001 From: reimar Date: Sun, 24 Jun 2007 14:08:22 +0000 Subject: Fix format string to match actual type. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23652 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpdemux/demux_real.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libmpdemux/demux_real.c b/libmpdemux/demux_real.c index 501c27bfe1..72b3f30b33 100644 --- a/libmpdemux/demux_real.c +++ b/libmpdemux/demux_real.c @@ -23,6 +23,7 @@ Video codecs: (supported by RealPlayer8 for Linux) #include #include #include +#include #include "config.h" #include "mp_msg.h" @@ -519,7 +520,7 @@ static double real_fix_timestamp(real_priv_t* priv, unsigned char* s, unsigned i if(pict_type<=1){ // I frame, sync timestamps: priv->kf_base=(int64_t)timestamp-kf; - mp_msg(MSGT_DEMUX, MSGL_DBG2,"\nTS: base=%08X\n",priv->kf_base); + mp_msg(MSGT_DEMUX, MSGL_DBG2,"\nTS: base=%08"PRIX64"\n",priv->kf_base); kf=timestamp; } else { // P/B frame, merge timestamps: -- cgit v1.2.3