summaryrefslogtreecommitdiff
path: root/libavformat/lxfdec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2015-12-15 19:59:14 +0100
committerDiego Biurrun <diego@biurrun.de>2015-12-26 10:28:03 +0100
commit69a68593ce5684409c3c4dd9a901bfd8b16925b1 (patch)
tree79be0154125f39934e3d71ea55ceee580cb7bab4 /libavformat/lxfdec.c
parent5049f6b772891cdf4030a9d572362efc8f7ae97f (diff)
Remove stray line breaks from avpriv_{report_missing_feature|request_samples}
Diffstat (limited to 'libavformat/lxfdec.c')
-rw-r--r--libavformat/lxfdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/lxfdec.c b/libavformat/lxfdec.c
index 2bbf033664..73d8bdf41c 100644
--- a/libavformat/lxfdec.c
+++ b/libavformat/lxfdec.c
@@ -130,7 +130,7 @@ static int get_packet_header(AVFormatContext *s)
version = bytestream_get_le32(&p);
header_size = bytestream_get_le32(&p);
if (version > 1)
- avpriv_request_sample(s, "Unknown format version %"PRIu32"\n", version);
+ avpriv_request_sample(s, "Format version %"PRIu32, version);
if (header_size < (version ? 72 : 60) ||
header_size > LXF_MAX_PACKET_HEADER_SIZE ||