Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2016-03-06 23:39:57 +0300
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2016-03-06 23:39:57 +0300
commitaebfbe5c1368ca1a3a8dfad49fa05e36ac430b08 (patch)
treeff3aa39ef652e6516561fb5e45f412c8bf80cc7a /libavformat/riffdec.c
parent59793785f4ba46c95248f9d336d422ce58547a15 (diff)
lavf/riffdec: Remove \n from avpriv_report_missing_feature().
Found-by: Clément Bœsch
Diffstat (limited to 'libavformat/riffdec.c')
-rw-r--r--libavformat/riffdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/riffdec.c b/libavformat/riffdec.c
index d7b81a0d08..151178dbc5 100644
--- a/libavformat/riffdec.c
+++ b/libavformat/riffdec.c
@@ -131,7 +131,7 @@ int ff_get_wav_header(AVFormatContext *s, AVIOContext *pb,
if (size >= 18 && id != 0x0165) { /* We're obviously dealing with WAVEFORMATEX */
int cbSize = avio_rl16(pb); /* cbSize */
if (big_endian) {
- avpriv_report_missing_feature(codec, "WAVEFORMATEX support for RIFX files\n");
+ avpriv_report_missing_feature(codec, "WAVEFORMATEX support for RIFX files");
return AVERROR_PATCHWELCOME;
}
size -= 18;