From e38e309c55fc51223643c316cc578525e4a61624 Mon Sep 17 00:00:00 2001 From: Juergen Keil Date: Mon, 10 Sep 2001 13:39:33 +0000 Subject: "l" printf conversion specification not needed for printing doubles (fixes a gcc warning) CVS patchset: 602 CVS date: 2001/09/10 13:39:33 --- src/demuxers/demux_mpgaudio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/demuxers/demux_mpgaudio.c b/src/demuxers/demux_mpgaudio.c index 96a8d5eb4..4b1101fa8 100644 --- a/src/demuxers/demux_mpgaudio.c +++ b/src/demuxers/demux_mpgaudio.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: demux_mpgaudio.c,v 1.19 2001/09/05 16:02:29 guenter Exp $ + * $Id: demux_mpgaudio.c,v 1.20 2001/09/10 13:39:33 jkeil Exp $ * * demultiplexer for mpeg audio (i.e. mp3) streams * @@ -147,7 +147,7 @@ static void mpg123_decode_header(demux_mpgaudio_t *this,unsigned long newhead) tpf /= freqs[sampling_frequency] << lsf; bitrate = (double) framesize / tpf; - printf("mpgaudio: bitrate = %.2lfkbps\n", bitrate/1024.0*8.0 ); + printf("mpgaudio: bitrate = %.2fkbps\n", bitrate/1024.0*8.0 ); this->stream_length = (int)(this->input->get_length(this->input) / bitrate); } -- cgit v1.2.3