[vlc-devel] commit: Fix format ( Rémi Denis-Courmont )

git version control git at videolan.org
Fri Mar 28 16:12:56 CET 2008


vlc | branch: 0.8.6-bugfix | Rémi Denis-Courmont <rdenis at simphalempin.com> | Fri Mar 28 17:13:26 2008 +0200| [96e55590e99de8fe30d5bfb42703ead6fc71acc1]

Fix format

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

 modules/demux/mp4/libmp4.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/modules/demux/mp4/libmp4.c b/modules/demux/mp4/libmp4.c
index 1c1f5e0..61ca9f3 100644
--- a/modules/demux/mp4/libmp4.c
+++ b/modules/demux/mp4/libmp4.c
@@ -1817,7 +1817,8 @@ static int MP4_ReadBox_elst( stream_t *p_stream, MP4_Box_t *p_box )
     }
 
 #ifdef MP4_VERBOSE
-    msg_Dbg( p_stream, "read box: \"elst\" entry-count "I64Fd, p_box->data.p_elst->i_entry_count );
+    msg_Dbg( p_stream, "read box: \"elst\" entry-count %u",
+             (unsigned)p_box->data.p_elst->i_entry_count );
 #endif
     MP4_READBOX_EXIT( 1 );
 }




More information about the vlc-devel mailing list