[vlc-commits] vorbis: fix format string
Tristan Matthews
git at videolan.org
Thu Jan 9 06:28:35 CET 2014
vlc | branch: master | Tristan Matthews <le.businessman at gmail.com> | Thu Jan 9 00:25:55 2014 -0500| [d1ee4337bf463521b8b0ba5eda49eec174c52439] | committer: Tristan Matthews
vorbis: fix format string
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d1ee4337bf463521b8b0ba5eda49eec174c52439
---
modules/codec/vorbis.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/codec/vorbis.c b/modules/codec/vorbis.c
index 85318fe..0741029 100644
--- a/modules/codec/vorbis.c
+++ b/modules/codec/vorbis.c
@@ -376,7 +376,7 @@ static int ProcessHeaders( decoder_t *p_dec )
date_Init( &p_sys->end_date, p_sys->vi.rate, 1 );
- msg_Dbg( p_dec, "channels:%d samplerate:%ld bitrate:%ld",
+ msg_Dbg( p_dec, "channels:%d samplerate:%ld bitrate:%ud",
p_sys->vi.channels, p_sys->vi.rate, p_dec->fmt_out.i_bitrate );
/* The next packet in order is the comments header */
More information about the vlc-commits
mailing list