]> git.sesse.net Git - ffmpeg/commitdiff
add a line break in error message text
authorJustin Ruggles <justin.ruggles@gmail.com>
Thu, 13 Nov 2008 03:18:01 +0000 (03:18 +0000)
committerJustin Ruggles <justin.ruggles@gmail.com>
Thu, 13 Nov 2008 03:18:01 +0000 (03:18 +0000)
Originally committed as revision 15810 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ac3dec.c

index d5011ff7f6a2acda47b735de7f147aafef0f9541..4cb1154f2706153117e8fd5c48aebc3c82b894cb 100644 (file)
@@ -918,7 +918,7 @@ static int decode_audio_block(AC3DecodeContext *s, int blk)
             else {
                 int bandwidth_code = get_bits(gbc, 6);
                 if (bandwidth_code > 60) {
-                    av_log(s->avctx, AV_LOG_ERROR, "bandwidth code = %d > 60", bandwidth_code);
+                    av_log(s->avctx, AV_LOG_ERROR, "bandwidth code = %d > 60\n", bandwidth_code);
                     return -1;
                 }
                 s->end_freq[ch] = bandwidth_code * 3 + 73;