summaryrefslogtreecommitdiff
path: root/libavformat/oggdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-10-21 23:13:53 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-10-21 23:13:53 +0200
commit248b1ff26b7ccd4cc2e1ad9220f203015a129a10 (patch)
treedbd695a80637ec85f069a713fdab9701b9550a8b /libavformat/oggdec.c
parent8f37a1e8dc93df5530df45a6f6fcf2d8dd3722e0 (diff)
Fix various uses of av_log_missing_feature()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/oggdec.c')
-rw-r--r--libavformat/oggdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggdec.c b/libavformat/oggdec.c
index a36dfae234..0fce8986b1 100644
--- a/libavformat/oggdec.c
+++ b/libavformat/oggdec.c
@@ -175,7 +175,7 @@ static int ogg_replace_stream(AVFormatContext *s, uint32_t serial)
uint8_t *buf;
if (ogg->nstreams != 1) {
- av_log_missing_feature(s, "Changing stream parameters in multistream ogg is", 0);
+ av_log_missing_feature(s, "Changing stream parameters in multistream ogg", 0);
return AVERROR_PATCHWELCOME;
}