summaryrefslogtreecommitdiffstats
path: root/libmpdemux/demux_nsv.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2011-06-30 22:05:50 +0200
committerUoti Urpala <uau@mplayer2.org>2011-07-01 03:37:34 +0300
commit480f3fb8d01fa3e3ed6e3b25c5c05bca1a152706 (patch)
tree91fe4a44e9830ecbe2b708728d8f15f5891156b0 /libmpdemux/demux_nsv.c
parent48891debe232da0de062ac248a36c8257c1633ac (diff)
downloadmpv-480f3fb8d01fa3e3ed6e3b25c5c05bca1a152706.tar.bz2
mpv-480f3fb8d01fa3e3ed6e3b25c5c05bca1a152706.tar.xz
cleanup: fix mp_dbg() format string warnings
Diffstat (limited to 'libmpdemux/demux_nsv.c')
-rw-r--r--libmpdemux/demux_nsv.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libmpdemux/demux_nsv.c b/libmpdemux/demux_nsv.c
index 40ed1d06d6..9ab68dd894 100644
--- a/libmpdemux/demux_nsv.c
+++ b/libmpdemux/demux_nsv.c
@@ -74,7 +74,8 @@ static int demux_nsv_fill_buffer ( demuxer_t *demuxer, demux_stream_t *ds )
// sometimes instead of 0xBEEF as described for the next audio/video chunk we get
// a whole new header
- mp_dbg(MSGT_DEMUX,MSGL_DBG2,"demux_nsv: %08X %08X\n",hdr[0]<<8|hdr[1],stream_tell(demuxer->stream));
+ mp_dbg(MSGT_DEMUX, MSGL_DBG2, "demux_nsv: %08X %08X\n",
+ hdr[0]<<8|hdr[1], (unsigned int)stream_tell(demuxer->stream));
switch(hdr[0]<<8|hdr[1]) {
case 0x4E53:
if(hdr[2]==0x56 && hdr[3]==0x73){