From a2232e696be35cd0f9eb3ed8037a02767d1a939e Mon Sep 17 00:00:00 2001 From: Piotr Bandurski Date: Fri, 3 Aug 2012 13:43:57 +0200 Subject: [PATCH] cllc: fix typo in the error message Signed-off-by: Michael Niedermayer --- libavcodec/cllc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/cllc.c b/libavcodec/cllc.c index 0c2c7c065b..d128d7ae94 100644 --- a/libavcodec/cllc.c +++ b/libavcodec/cllc.c @@ -225,7 +225,7 @@ static int cllc_decode_frame(AVCodecContext *avctx, void *data, break; default: - av_log(avctx, AV_LOG_ERROR, "Unknown coding type: %d\n.", coding_type); + av_log(avctx, AV_LOG_ERROR, "Unknown coding type: %d.\n", coding_type); return AVERROR_INVALIDDATA; }