diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-12-03 15:41:04 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-12-03 15:41:27 +0100 |
commit | 5a237c33b86ad32a0566fe2f602d685b5ef34c27 (patch) | |
tree | b5e5a8611b0c5f50bb61f5dd85e7b8ca6e47238d | |
parent | a8cb567e559a99c27bd936a81422147cb23e77a6 (diff) | |
download | ffmpeg-5a237c33b86ad32a0566fe2f602d685b5ef34c27.tar.gz |
lavf/asfdec_f: Remove CR/LF from avpriv_request_sample() call.
-rw-r--r-- | libavformat/asfdec_f.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/asfdec_f.c b/libavformat/asfdec_f.c index b973eff96e..be09a92bd1 100644 --- a/libavformat/asfdec_f.c +++ b/libavformat/asfdec_f.c @@ -1010,7 +1010,7 @@ static int asf_get_packet(AVFormatContext *s, AVIOContext *pb) } if (c != 0x82) - avpriv_request_sample(s, "Invalid ECC byte\n"); + avpriv_request_sample(s, "Invalid ECC byte"); if (!asf->uses_std_ecc) asf->uses_std_ecc = (c == 0x82 && !d && !e) ? 1 : -1; |