summaryrefslogtreecommitdiff
path: root/libavcodec/ac3dec.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2008-11-13 03:18:01 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2008-11-13 03:18:01 +0000
commit6c6f9272891d17be3e082e34ae60b33c0b31f1e3 (patch)
treeff005123359dc5c36bb2c83c886bd2032bc50748 /libavcodec/ac3dec.c
parent6ee6d068f759aabe10a65ca3f19b636b83930277 (diff)
add a line break in error message text
Originally committed as revision 15810 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3dec.c')
-rw-r--r--libavcodec/ac3dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c
index d5011ff7f6..4cb1154f27 100644
--- a/libavcodec/ac3dec.c
+++ b/libavcodec/ac3dec.c
@@ -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;