changeset 8134:10541875e559 libavcodec

add a line break in error message text
author jbr
date Thu, 13 Nov 2008 03:18:01 +0000
parents 043e1096c83d
children c82f8f5657ff
files ac3dec.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ac3dec.c	Thu Nov 13 03:17:56 2008 +0000
+++ b/ac3dec.c	Thu Nov 13 03:18:01 2008 +0000
@@ -918,7 +918,7 @@
             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;