vlc | branch: master | Steve Lhomme <[email protected]> | Wed Jul 11 15:26:08 2018 +0200| [d548e366c24a9f7560c430809d470d05e30d9282] | committer: Steve Lhomme
audio_output: print the rate as an unsigned that it is > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d548e366c24a9f7560c430809d470d05e30d9282 --- src/audio_output/common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/audio_output/common.c b/src/audio_output/common.c index f7dbc57557..05e526e630 100644 --- a/src/audio_output/common.c +++ b/src/audio_output/common.c @@ -229,7 +229,7 @@ const char * aout_FormatPrintChannels( const audio_sample_format_t * p_format ) void aout_FormatPrint( vlc_object_t *obj, const char *psz_text, const audio_sample_format_t *p_format ) { - msg_Dbg( obj, "%s '%4.4s' %d Hz %s frame=%d samples/%d bytes", psz_text, + msg_Dbg( obj, "%s '%4.4s' %d Hz %s frame=%u samples/%u bytes", psz_text, (char *)&p_format->i_format, p_format->i_rate, aout_FormatPrintChannels( p_format ), p_format->i_frame_length, p_format->i_bytes_per_frame ); @@ -243,7 +243,7 @@ void aout_FormatsPrint( vlc_object_t *obj, const char * psz_text, const audio_sample_format_t * p_format1, const audio_sample_format_t * p_format2 ) { - msg_Dbg( obj, "%s '%4.4s'->'%4.4s' %d Hz->%d Hz %s->%s", + msg_Dbg( obj, "%s '%4.4s'->'%4.4s' %u Hz->%u Hz %s->%s", psz_text, (char *)&p_format1->i_format, (char *)&p_format2->i_format, p_format1->i_rate, p_format2->i_rate, _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
