diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-10-14 00:30:42 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2011-10-29 15:06:31 -0400 |
commit | 96b5702efe62180f57ea4d4be9b60fadd7d269b0 (patch) | |
tree | 91e4030d4b3e9236e36877449d41fa39988219f3 /libavcodec | |
parent | bff5b2c1ca1290ea30587ff2f76171f9e3854872 (diff) | |
download | ffmpeg-96b5702efe62180f57ea4d4be9b60fadd7d269b0.tar.gz |
atrac1: fix a typo
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/atrac1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/atrac1.c b/libavcodec/atrac1.c index 1ba580cbac..d129f102f3 100644 --- a/libavcodec/atrac1.c +++ b/libavcodec/atrac1.c @@ -282,7 +282,7 @@ static int atrac1_decode_frame(AVCodecContext *avctx, void *data, if (buf_size < 212 * q->channels) { - av_log(q,AV_LOG_ERROR,"Not enought data to decode!\n"); + av_log(q,AV_LOG_ERROR,"Not enough data to decode!\n"); return -1; } |