diff options
author | Piotr Bandurski <ami_stuff@o2.pl> | 2012-09-01 13:15:11 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-01 15:59:30 +0200 |
commit | 53241b5dc781471c9535a1d24ec4ece53f834f22 (patch) | |
tree | 649d02bdb2e118bfd639e8d37ff5fbb41b9282ad /libavcodec/alac.c | |
parent | 08277a45c33f2e96dcef9878c6dafdeac9a01597 (diff) | |
download | ffmpeg-53241b5dc781471c9535a1d24ec4ece53f834f22.tar.gz |
lavc: add missing new line to some messages
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/alac.c')
-rw-r--r-- | libavcodec/alac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/alac.c b/libavcodec/alac.c index 6d047960cd..9cd17374a8 100644 --- a/libavcodec/alac.c +++ b/libavcodec/alac.c @@ -490,7 +490,7 @@ static int alac_decode_frame(AVCodecContext *avctx, void *data, break; } if (element > TYPE_CPE && element != TYPE_LFE) { - av_log(avctx, AV_LOG_ERROR, "syntax element unsupported: %d", element); + av_log(avctx, AV_LOG_ERROR, "syntax element unsupported: %d\n", element); return AVERROR_PATCHWELCOME; } |