summaryrefslogtreecommitdiff
path: root/libavformat/spdifdec.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/spdifdec.c
parent8f37a1e8dc93df5530df45a6f6fcf2d8dd3722e0 (diff)
Fix various uses of av_log_missing_feature()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/spdifdec.c')
-rw-r--r--libavformat/spdifdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/spdifdec.c b/libavformat/spdifdec.c
index dce33461fe..ad138abb13 100644
--- a/libavformat/spdifdec.c
+++ b/libavformat/spdifdec.c
@@ -92,7 +92,7 @@ static int spdif_get_offset_and_codec(AVFormatContext *s,
default:
if (s) { /* be silent during a probe */
av_log(s, AV_LOG_WARNING, "Data type 0x%04x", data_type);
- av_log_missing_feature(s, " in IEC 61937 is", 1);
+ av_log_missing_feature(s, " in IEC 61937", 1);
}
return AVERROR_PATCHWELCOME;
}