summaryrefslogtreecommitdiff
path: root/libavformat/vocdec.c
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2007-03-07 00:27:23 +0000
committerAlex Beregszaszi <alex@rtfs.hu>2007-03-07 00:27:23 +0000
commitcbc09a7d5a570fff61a059c0a6f910f275805e97 (patch)
treea047059dfcff7efdbcd8261e762d6731db520729 /libavformat/vocdec.c
parent73d6ca4feefc45a3be6fde453705978b5523c575 (diff)
typo: unkown->unknown
Originally committed as revision 8274 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/vocdec.c')
-rw-r--r--libavformat/vocdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/vocdec.c b/libavformat/vocdec.c
index 21ef8c2071..bc9205faa0 100644
--- a/libavformat/vocdec.c
+++ b/libavformat/vocdec.c
@@ -51,7 +51,7 @@ static int voc_read_header(AVFormatContext *s, AVFormatParameters *ap)
url_fskip(pb, 20);
header_size = get_le16(pb) - 22;
if (header_size != 4) {
- av_log(s, AV_LOG_ERROR, "unkown header size: %d\n", header_size);
+ av_log(s, AV_LOG_ERROR, "unknown header size: %d\n", header_size);
return AVERROR_NOTSUPP;
}
url_fskip(pb, header_size);