diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-04-10 15:39:13 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-04-10 15:39:13 +0200 |
commit | 7e1e25c2dced3e76bb4d35ad082f2abf6ae41c4c (patch) | |
tree | cd6e07997b8f853eba85d5393c1b85c47e0ff89a /libavformat | |
parent | 38a6242b271fad4917a1c6201ff61e10160c965b (diff) | |
download | ffmpeg-7e1e25c2dced3e76bb4d35ad082f2abf6ae41c4c.tar.gz |
lavf/avio: Remove linebreak from https warning.
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/avio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avio.c b/libavformat/avio.c index b2c2178e4c..6bfa67f3ba 100644 --- a/libavformat/avio.c +++ b/libavformat/avio.c @@ -297,7 +297,7 @@ int ffurl_alloc(URLContext **puc, const char *filename, int flags, *puc = NULL; if (av_strstart(filename, "https:", NULL)) av_log(NULL, AV_LOG_WARNING, "https protocol not found, recompile FFmpeg with " - "openssl, gnutls,\n" + "openssl, gnutls " "or securetransport enabled.\n"); return AVERROR_PROTOCOL_NOT_FOUND; } |