diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-09-25 07:42:32 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-09-25 07:42:32 +0200 |
commit | 4390f8c28daab9ac9f2c7b9164bdb79b3689d484 (patch) | |
tree | 9565d11ffbd7cfd49e403cdb2571b12e57d6f53a /libavformat | |
parent | aea15df3b4c264b5b13d5f85341f52c7ec756c6f (diff) | |
download | ffmpeg-4390f8c28daab9ac9f2c7b9164bdb79b3689d484.tar.gz |
Fix two "skiping" typo.
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 0eda2aeec6..a48369fdfb 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -646,7 +646,7 @@ int avformat_open_input(AVFormatContext **ps, const char *filename, AVInputForma if((ret = ff_id3v2_parse_apic(s, &id3v2_extra_meta)) < 0) goto fail; } else - av_log(s, AV_LOG_DEBUG, "demuxer does not support additional id3 data, skiping\n"); + av_log(s, AV_LOG_DEBUG, "demuxer does not support additional id3 data, skipping\n"); } ff_id3v2_free_extra_meta(&id3v2_extra_meta); |