summaryrefslogtreecommitdiff
path: root/libavcodec/cpia.c
diff options
context:
space:
mode:
authorStephan Hilb <stephan@ecshi.net>2014-04-06 21:06:04 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-04-07 01:33:10 +0200
commit5dae3cf35729d21b231d4ccc6153509d95bf89ba (patch)
treedee3620f25344f26f408863acbca508a2ee67f60 /libavcodec/cpia.c
parent01a5d717891465bd126d2d3c318a022acd812bf5 (diff)
downloadffmpeg-5dae3cf35729d21b231d4ccc6153509d95bf89ba.tar.gz
lavc/cpia: fix typo in log message
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/cpia.c')
-rw-r--r--libavcodec/cpia.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cpia.c b/libavcodec/cpia.c
index 44226fb46b..d4fc70142a 100644
--- a/libavcodec/cpia.c
+++ b/libavcodec/cpia.c
@@ -114,7 +114,7 @@ static int cpia_decode_frame(AVCodecContext *avctx,
if (src_size < linelength) {
av_frame_set_decode_error_flags(frame, FF_DECODE_ERROR_INVALID_BITSTREAM);
- av_log(avctx, AV_LOG_WARNING, "Frame ended enexpectedly!\n");
+ av_log(avctx, AV_LOG_WARNING, "Frame ended unexpectedly!\n");
break;
}
if (src[linelength - 1] != EOL) {